aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Frontend/Utils.h
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2011-12-09 01:33:57 +0000
committerChandler Carruth <chandlerc@gmail.com>2011-12-09 01:33:57 +0000
commitcb381eac84e5a14a8c7e7654eadbe1d3d54d795c (patch)
tree79354d3a59629119df845f6f1162b6a4baf72ee0 /include/clang/Frontend/Utils.h
parent5a477dbf7589f516effe56fa2ed7d4680b5c1094 (diff)
Move a free function from the Frontend library into the Lex library as
part of HeaderSearch. This function just normalizes filenames for use inside of a synthetic include directive, but it is used in both the Frontend and Serialization libraries so it needs a common home. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@146227 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/Utils.h')
-rw-r--r--include/clang/Frontend/Utils.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/clang/Frontend/Utils.h b/include/clang/Frontend/Utils.h
index 6a81459800..3cdda2aefa 100644
--- a/include/clang/Frontend/Utils.h
+++ b/include/clang/Frontend/Utils.h
@@ -46,11 +46,6 @@ class Stmt;
class TargetInfo;
class FrontendOptions;
-/// Normalize \arg File for use in a user defined #include directive (in the
-/// predefines buffer).
-std::string NormalizeDashIncludePath(StringRef File,
- FileManager &FileMgr);
-
/// Apply the header search options to get given HeaderSearch object.
void ApplyHeaderSearchOptions(HeaderSearch &HS,
const HeaderSearchOptions &HSOpts,