Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 4a07829

Browse files
dcharkescommit-bot@chromium.org
authored andcommitted
[vm] Change import paths inside runtime/include
Such that the files can be included more easily. Change-Id: I3129b35393eaf41f90e59a530b752846085bf93e Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/164163 Auto-Submit: Daco Harkes <dacoharkes@google.com> Reviewed-by: Jonas Jensen <jonasfj@google.com>
1 parent 02923c6 commit 4a07829

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

runtime/include/dart_api_dl.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
* BSD-style license that can be found in the LICENSE file.
55
*/
66

7-
#include "include/dart_api_dl.h"
8-
#include "include/dart_version.h"
9-
#include "include/internal/dart_api_dl_impl.h"
7+
#include "dart_api_dl.h" /* NOLINT */
8+
#include "dart_version.h" /* NOLINT */
9+
#include "internal/dart_api_dl_impl.h" /* NOLINT */
1010

1111
#include <string.h>
1212

runtime/include/dart_api_dl.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
#ifndef RUNTIME_INCLUDE_DART_API_DL_H_
88
#define RUNTIME_INCLUDE_DART_API_DL_H_
99

10-
#include "include/dart_api.h"
11-
#include "include/dart_native_api.h"
10+
#include "dart_api.h" /* NOLINT */
11+
#include "dart_native_api.h" /* NOLINT */
1212

1313
/** \mainpage Dynamically Linked Dart API
1414
*

0 commit comments

Comments
 (0)