summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/clang-modernize/UseAuto
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2013-09-04 19:13:50 +0000
committerChandler Carruth <chandlerc@gmail.com>2013-09-04 19:13:50 +0000
commit35c0361783f23a59fc0b2be2c9a53b8bf9698b4d (patch)
treef6379fbb1261d0d1ad01f5bc3920f6b36069853d /clang-tools-extra/clang-modernize/UseAuto
parent13654dd30362503f58f2a665b95b04ea6638618c (diff)
downloadbcm5719-llvm-35c0361783f23a59fc0b2be2c9a53b8bf9698b4d.tar.gz
bcm5719-llvm-35c0361783f23a59fc0b2be2c9a53b8bf9698b4d.zip
Update the header guards for clang-modernize.
llvm-svn: 189973
Diffstat (limited to 'clang-tools-extra/clang-modernize/UseAuto')
-rw-r--r--clang-tools-extra/clang-modernize/UseAuto/UseAuto.h6
-rw-r--r--clang-tools-extra/clang-modernize/UseAuto/UseAutoActions.h6
-rw-r--r--clang-tools-extra/clang-modernize/UseAuto/UseAutoMatchers.h6
3 files changed, 9 insertions, 9 deletions
diff --git a/clang-tools-extra/clang-modernize/UseAuto/UseAuto.h b/clang-tools-extra/clang-modernize/UseAuto/UseAuto.h
index 26b5e4496f6..2293fd71f19 100644
--- a/clang-tools-extra/clang-modernize/UseAuto/UseAuto.h
+++ b/clang-tools-extra/clang-modernize/UseAuto/UseAuto.h
@@ -15,8 +15,8 @@
///
//===----------------------------------------------------------------------===//
-#ifndef CPP11_MIGRATE_USE_AUTO_H
-#define CPP11_MIGRATE_USE_AUTO_H
+#ifndef CLANG_MODERNIZE_USE_AUTO_H
+#define CLANG_MODERNIZE_USE_AUTO_H
#include "Core/Transform.h"
#include "llvm/Support/Compiler.h"
@@ -39,4 +39,4 @@ public:
const std::vector<std::string> &SourcePaths) LLVM_OVERRIDE;
};
-#endif // CPP11_MIGRATE_USE_AUTO_H
+#endif // CLANG_MODERNIZE_USE_AUTO_H
diff --git a/clang-tools-extra/clang-modernize/UseAuto/UseAutoActions.h b/clang-tools-extra/clang-modernize/UseAuto/UseAutoActions.h
index 0ddb0e0c5af..7cf8feb9ec6 100644
--- a/clang-tools-extra/clang-modernize/UseAuto/UseAutoActions.h
+++ b/clang-tools-extra/clang-modernize/UseAuto/UseAutoActions.h
@@ -13,8 +13,8 @@
///
//===----------------------------------------------------------------------===//
-#ifndef CPP11_MIGRATE_USE_AUTO_ACTIONS_H
-#define CPP11_MIGRATE_USE_AUTO_ACTIONS_H
+#ifndef CLANG_MODERNIZE_USE_AUTO_ACTIONS_H
+#define CLANG_MODERNIZE_USE_AUTO_ACTIONS_H
#include "Core/Transform.h"
#include "clang/ASTMatchers/ASTMatchFinder.h"
@@ -53,4 +53,4 @@ private:
Transform &Owner;
};
-#endif // CPP11_MIGRATE_USE_AUTO_ACTIONS_H
+#endif // CLANG_MODERNIZE_USE_AUTO_ACTIONS_H
diff --git a/clang-tools-extra/clang-modernize/UseAuto/UseAutoMatchers.h b/clang-tools-extra/clang-modernize/UseAuto/UseAutoMatchers.h
index 37baceee047..eff0ec029a4 100644
--- a/clang-tools-extra/clang-modernize/UseAuto/UseAutoMatchers.h
+++ b/clang-tools-extra/clang-modernize/UseAuto/UseAutoMatchers.h
@@ -13,8 +13,8 @@
///
//===----------------------------------------------------------------------===//
-#ifndef CPP11_MIGRATE_USE_AUTO_MATCHERS_H
-#define CPP11_MIGRATE_USE_AUTO_MATCHERS_H
+#ifndef CLANG_MODERNIZE_USE_AUTO_MATCHERS_H
+#define CLANG_MODERNIZE_USE_AUTO_MATCHERS_H
#include "clang/ASTMatchers/ASTMatchers.h"
@@ -31,4 +31,4 @@ clang::ast_matchers::StatementMatcher makeIteratorDeclMatcher();
/// initialized by a C++ new expression.
clang::ast_matchers::StatementMatcher makeDeclWithNewMatcher();
-#endif // CPP11_MIGRATE_USE_AUTO_MATCHERS_H
+#endif // CLANG_MODERNIZE_USE_AUTO_MATCHERS_H
OpenPOWER on IntegriCloud