diff options
author | Jiyong Park <jiyong@google.com> | 2019-05-04 03:10:48 +0900 |
---|---|---|
committer | Jiyong Park <jiyong@google.com> | 2019-05-16 08:55:11 +0900 |
commit | 16a9896ff7acbf05fae5786027fd46739309e736 (patch) | |
tree | c562d803c55edc2578ad0fd549de3905f92b52b8 /libnativeloader/native_loader_namespace.cpp | |
parent | 8537781cc7bf7e866a1c0d1aed904c578ce7391c (diff) |
Fix style around header inclusion
This change is to be in sync with other libraries in system/core.
External headers are included via #include <...> rather
than #include "...", which is for headers from the current library.
Bug: 130388701
Test: build & pass presubmit tests
Change-Id: Ifb87ebaea1b0ff95e2e79352e6a42e3bfd949c52
Diffstat (limited to 'libnativeloader/native_loader_namespace.cpp')
-rw-r--r-- | libnativeloader/native_loader_namespace.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/libnativeloader/native_loader_namespace.cpp b/libnativeloader/native_loader_namespace.cpp index e0d4697ca..90f730c9b 100644 --- a/libnativeloader/native_loader_namespace.cpp +++ b/libnativeloader/native_loader_namespace.cpp @@ -15,15 +15,17 @@ */ #define LOG_TAG "nativeloader" + #include "native_loader_namespace.h" #include <dlfcn.h> #include <functional> -#include "android-base/strings.h" -#include "log/log.h" -#include "nativebridge/native_bridge.h" +#include <android-base/strings.h> +#include <log/log.h> +#include <nativebridge/native_bridge.h> + #include "nativeloader/dlext_namespaces.h" namespace android { |