diff options
author | Elliott Hughes <enh@google.com> | 2016-03-23 15:04:52 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2016-03-23 15:04:52 -0700 |
commit | 54c72aaccc45edf4832cfdc5053d9ae6acc9bcdf (patch) | |
tree | 67965789f69be307c3e27b9dc5cbf98beb412139 /base/include/android-base/errors.h | |
parent | 8aeabe15dd38093029714dabb1713724400cf5f1 (diff) |
Fix <android-base/*.h> header guards.
I've been meaning to do this for a while, and it came up on the bug below
that there have been conflicts with similar-named files in <base/*.h>,
so let's rule out one possible explanation.
Bug: http://b/27804373
Change-Id: I69e5d52b6260c573c308513420aee0e281426bd4
Diffstat (limited to 'base/include/android-base/errors.h')
-rw-r--r-- | base/include/android-base/errors.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/base/include/android-base/errors.h b/base/include/android-base/errors.h index ca621fa8b7..04c299c865 100644 --- a/base/include/android-base/errors.h +++ b/base/include/android-base/errors.h @@ -27,8 +27,8 @@ // special handling to get the error string. Refer to Microsoft documentation // to determine which error code to check for each function. -#ifndef BASE_ERRORS_H -#define BASE_ERRORS_H +#ifndef ANDROID_BASE_ERRORS_H +#define ANDROID_BASE_ERRORS_H #include <string> @@ -43,4 +43,4 @@ std::string SystemErrorCodeToString(int error_code); } // namespace base } // namespace android -#endif // BASE_ERRORS_H +#endif // ANDROID_BASE_ERRORS_H |