Author: akirtzidis
Date: Tue Jul 22 16:56:45 2008
New Revision: 53934

URL: http://llvm.org/viewvc/llvm-project?rev=53934&view=rev
Log:
Fix compilation error on GCC 4.3.0 ('memcpy' was not declared in this scope).

Modified:
    cfe/trunk/include/clang/AST/Attr.h

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

==============================================================================
--- cfe/trunk/include/clang/AST/Attr.h (original)
+++ cfe/trunk/include/clang/AST/Attr.h Tue Jul 22 16:56:45 2008
@@ -15,6 +15,7 @@
 #define LLVM_CLANG_AST_ATTR_H
 
 #include <cassert>
+#include <cstring>
 #include <string>
 #include <algorithm>
 


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to