diff options
author | 2019-10-14 10:27:00 +0100 | |
---|---|---|
committer | 2019-10-16 15:39:42 +0000 | |
commit | 31b3ffa32d4efc3868806917ca3f2c82847478c7 (patch) | |
tree | 60a421d346615fd0f1b3171fa5d3820d01ae0867 /libnativeloader/library_namespaces.h | |
parent | cce414f8b46de709250af49398083e99f96b6161 (diff) |
Remove temporary CPPLINT.cfg files
Temporary CPPLINT.cfg files were introduced when move libnativeloader
and libnativebridge under art/.
Bug: 141749154
Test: mm cpplint-art-all
Change-Id: I85e75180138a512aef025f1e5275e20d8d1d14b0
Diffstat (limited to 'libnativeloader/library_namespaces.h')
-rw-r--r-- | libnativeloader/library_namespaces.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libnativeloader/library_namespaces.h b/libnativeloader/library_namespaces.h index 7b3efff4df..8fac534302 100644 --- a/libnativeloader/library_namespaces.h +++ b/libnativeloader/library_namespaces.h @@ -13,7 +13,10 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#pragma once + +#ifndef ART_LIBNATIVELOADER_LIBRARY_NAMESPACES_H_ +#define ART_LIBNATIVELOADER_LIBRARY_NAMESPACES_H_ + #if !defined(__ANDROID__) #error "Not available for host" #endif @@ -65,3 +68,5 @@ class LibraryNamespaces { }; } // namespace android::nativeloader + +#endif // ART_LIBNATIVELOADER_LIBRARY_NAMESPACES_H_ |