From 34d02d0b37f16015f317a935c48ce8b7b64ae77b Mon Sep 17 00:00:00 2001 From: Roman Divacky Date: Tue, 15 Dec 2009 18:49:47 +0000 Subject: Update clang to 91430. --- include/clang/Basic/SourceLocation.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'include/clang/Basic/SourceLocation.h') diff --git a/include/clang/Basic/SourceLocation.h b/include/clang/Basic/SourceLocation.h index 28cf2db9bc25..36baf5feecce 100644 --- a/include/clang/Basic/SourceLocation.h +++ b/include/clang/Basic/SourceLocation.h @@ -21,6 +21,7 @@ namespace llvm { class MemoryBuffer; class raw_ostream; template struct DenseMapInfo; + template struct isPodLike; } namespace clang { @@ -296,9 +297,12 @@ namespace llvm { static bool isEqual(clang::FileID LHS, clang::FileID RHS) { return LHS == RHS; } - - static bool isPod() { return true; } }; + + template <> + struct isPodLike { static const bool value = true; }; + template <> + struct isPodLike { static const bool value = true; }; } // end namespace llvm -- cgit v1.2.3