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/stringprintf.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/stringprintf.h')
-rw-r--r-- | base/include/android-base/stringprintf.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/base/include/android-base/stringprintf.h b/base/include/android-base/stringprintf.h index d68af8713e..cf666abe0f 100644 --- a/base/include/android-base/stringprintf.h +++ b/base/include/android-base/stringprintf.h @@ -14,8 +14,8 @@ * limitations under the License. */ -#ifndef BASE_STRINGPRINTF_H -#define BASE_STRINGPRINTF_H +#ifndef ANDROID_BASE_STRINGPRINTF_H +#define ANDROID_BASE_STRINGPRINTF_H #include <stdarg.h> #include <string> @@ -53,4 +53,4 @@ void StringAppendV(std::string* dst, const char* format, va_list ap) } // namespace base } // namespace android -#endif // BASE_STRINGPRINTF_H +#endif // ANDROID_BASE_STRINGPRINTF_H |