diff options
| author | Edwin Vane <edwin.vane@intel.com> | 2013-07-08 12:17:37 +0000 |
|---|---|---|
| committer | Edwin Vane <edwin.vane@intel.com> | 2013-07-08 12:17:37 +0000 |
| commit | aae33677f503c1215b97059c07f3a31d00cce4a2 (patch) | |
| tree | 2163610b221476c464458eae5d1c20e2f2237ee9 /clang-tools-extra/cpp11-migrate/Core/IncludeExcludeInfo.h | |
| parent | 0b900831688d358421a63fd8f6d24602a0a61a5e (diff) | |
| download | bcm5719-llvm-aae33677f503c1215b97059c07f3a31d00cce4a2.tar.gz bcm5719-llvm-aae33677f503c1215b97059c07f3a31d00cce4a2.zip | |
cpp11-migrate: Tidying up
* Some file headers were missing for files in Core/
* Some headers were included but not necessary
* CMakeLists.txt was linking in LLVMSupport even though CMakeLists in subdirs
were linking it in too.
* StringRefisation of constructors of types in FileOverrides.h
* Other misc cleanups
Author: Guillaume Papin <guillaume.papin@epitech.eu>
llvm-svn: 185811
Diffstat (limited to 'clang-tools-extra/cpp11-migrate/Core/IncludeExcludeInfo.h')
| -rw-r--r-- | clang-tools-extra/cpp11-migrate/Core/IncludeExcludeInfo.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/clang-tools-extra/cpp11-migrate/Core/IncludeExcludeInfo.h b/clang-tools-extra/cpp11-migrate/Core/IncludeExcludeInfo.h index 0d902623fb0..f55ec9f81cf 100644 --- a/clang-tools-extra/cpp11-migrate/Core/IncludeExcludeInfo.h +++ b/clang-tools-extra/cpp11-migrate/Core/IncludeExcludeInfo.h @@ -12,8 +12,9 @@ /// to handle the include and exclude command line options. /// //===----------------------------------------------------------------------===// -#ifndef LLVM_TOOLS_CLANG_TOOLS_EXTRA_CPP11_MIGRATE_INCLUDEEXCLUDEINFO_H -#define LLVM_TOOLS_CLANG_TOOLS_EXTRA_CPP11_MIGRATE_INCLUDEEXCLUDEINFO_H + +#ifndef CPP11_MIGRATE_INCLUDEEXCLUDEINFO_H +#define CPP11_MIGRATE_INCLUDEEXCLUDEINFO_H #include "llvm/ADT/StringRef.h" #include "llvm/Support/system_error.h" @@ -48,4 +49,4 @@ private: std::vector<std::string> ExcludeList; }; -#endif // LLVM_TOOLS_CLANG_TOOLS_EXTRA_CPP11_MIGRATE_INCLUDEEXCLUDEINFO_H +#endif // CPP11_MIGRATE_INCLUDEEXCLUDEINFO_H |

