diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2012-02-26 16:55:50 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2012-02-26 16:55:50 +0000 |
commit | a6c10681e57c292e16a18bdb9891c8db6ebe5c83 (patch) | |
tree | 5294ebbe2087f147b67726fcd08da549a7d30701 /include/clang/Basic/SourceLocation.h | |
parent | 5ed7dd6c8defe361a48209e4a04fbaebdd628bea (diff) |
Move FullSourceLoc::dump into the .cpp file, the used attribute made us emit this into every TU that includes SourceLocation.h.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@151493 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/SourceLocation.h')
-rw-r--r-- | include/clang/Basic/SourceLocation.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Basic/SourceLocation.h b/include/clang/Basic/SourceLocation.h index c4a64e3d53..d5fa7e74ac 100644 --- a/include/clang/Basic/SourceLocation.h +++ b/include/clang/Basic/SourceLocation.h @@ -325,7 +325,7 @@ public: /// Prints information about this FullSourceLoc to stderr. Useful for /// debugging. - LLVM_ATTRIBUTE_USED void dump() const { SourceLocation::dump(*SrcMgr); } + LLVM_ATTRIBUTE_USED void dump() const; friend inline bool operator==(const FullSourceLoc &LHS, const FullSourceLoc &RHS) { |