diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2013-09-04 19:15:54 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2013-09-04 19:15:54 +0000 |
commit | 8e8db654be737bf0b5fc117b27989ef0e737e1fb (patch) | |
tree | 73b2e995ebc02ab992ff7bad55ac19f4a295d72c /clang-tools-extra/unittests | |
parent | 35c0361783f23a59fc0b2be2c9a53b8bf9698b4d (diff) | |
download | bcm5719-llvm-8e8db654be737bf0b5fc117b27989ef0e737e1fb.tar.gz bcm5719-llvm-8e8db654be737bf0b5fc117b27989ef0e737e1fb.zip |
Update the header guards for clang-modernize's unittests.
llvm-svn: 189974
Diffstat (limited to 'clang-tools-extra/unittests')
-rw-r--r-- | clang-tools-extra/unittests/clang-modernize/Utility.h | 6 | ||||
-rw-r--r-- | clang-tools-extra/unittests/clang-modernize/VirtualFileHelper.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/clang-tools-extra/unittests/clang-modernize/Utility.h b/clang-tools-extra/unittests/clang-modernize/Utility.h index 1b25c822972..c934d4806e0 100644 --- a/clang-tools-extra/unittests/clang-modernize/Utility.h +++ b/clang-tools-extra/unittests/clang-modernize/Utility.h @@ -7,8 +7,8 @@ // //===----------------------------------------------------------------------===// -#ifndef CPP11_MIGRATE_UNITTESTS_UTILITY_H -#define CPP11_MIGRATE_UNITTESTS_UTILITY_H +#ifndef CLANG_MODERNIZE_UNITTESTS_UTILITY_H +#define CLANG_MODERNIZE_UNITTESTS_UTILITY_H // FIXME: copied from unittests/Support/Path.cpp #define ASSERT_NO_ERROR(x) \ @@ -22,4 +22,4 @@ } else { \ } -#endif // CPP11_MIGRATE_UNITTESTS_UTILITY_H +#endif // CLANG_MODERNIZE_UNITTESTS_UTILITY_H diff --git a/clang-tools-extra/unittests/clang-modernize/VirtualFileHelper.h b/clang-tools-extra/unittests/clang-modernize/VirtualFileHelper.h index 093ace1d0dc..2960c72ab0d 100644 --- a/clang-tools-extra/unittests/clang-modernize/VirtualFileHelper.h +++ b/clang-tools-extra/unittests/clang-modernize/VirtualFileHelper.h @@ -12,8 +12,8 @@ /// //===----------------------------------------------------------------------===// -#ifndef CPP11_MIGRATE_VIRTUAL_FILE_HELPER_H -#define CPP11_MIGRATE_VIRTUAL_FILE_HELPER_H +#ifndef CLANG_MODERNIZE_VIRTUAL_FILE_HELPER_H +#define CLANG_MODERNIZE_VIRTUAL_FILE_HELPER_H #include "clang/Basic/Diagnostic.h" #include "clang/Basic/DiagnosticOptions.h" @@ -78,4 +78,4 @@ private: } // end namespace clang -#endif // CPP11_MIGRATE_VIRTUAL_FILE_HELPER_H +#endif // CLANG_MODERNIZE_VIRTUAL_FILE_HELPER_H |