[cfe-commits] r68586 - in /cfe/trunk: include/clang/AST/DeclContextInternals.h lib/AST/DeclBase.cpp

Chris Lattner sabre at nondot.org
Tue Apr 7 20:33:47 PDT 2009


Author: lattner
Date: Tue Apr  7 22:33:43 2009
New Revision: 68586

URL: http://llvm.org/viewvc/llvm-project?rev=68586&view=rev
Log:
improve compatibility with VC+, patch by John Thompson!

Modified:
    cfe/trunk/include/clang/AST/DeclContextInternals.h
    cfe/trunk/lib/AST/DeclBase.cpp

Modified: cfe/trunk/include/clang/AST/DeclContextInternals.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/DeclContextInternals.h?rev=68586&r1=68585&r2=68586&view=diff

==============================================================================
--- cfe/trunk/include/clang/AST/DeclContextInternals.h (original)
+++ cfe/trunk/include/clang/AST/DeclContextInternals.h Tue Apr  7 22:33:43 2009
@@ -19,6 +19,7 @@
 #include "llvm/ADT/DenseMap.h"
 #include "llvm/ADT/PointerUnion.h"
 #include "llvm/ADT/SmallVector.h"
+#include <functional>
 
 namespace clang {
 

Modified: cfe/trunk/lib/AST/DeclBase.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/DeclBase.cpp?rev=68586&r1=68585&r2=68586&view=diff

==============================================================================
--- cfe/trunk/lib/AST/DeclBase.cpp (original)
+++ cfe/trunk/lib/AST/DeclBase.cpp Tue Apr  7 22:33:43 2009
@@ -23,7 +23,6 @@
 #include "llvm/Support/raw_ostream.h"
 #include <algorithm>
 #include <cstdio>
-#include <functional>
 #include <vector>
 using namespace clang;
 





More information about the cfe-commits mailing list