From ea7e97e14f2f1f9817d2ae8a25ec6ea652e5287f Mon Sep 17 00:00:00 2001 From: Argyrios Kyrtzidis Date: Tue, 22 Jul 2008 21:56:45 +0000 Subject: [PATCH] Fix compilation error on GCC 4.3.0 ('memcpy' was not declared in this scope). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@53934 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/AST/Attr.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/clang/AST/Attr.h b/include/clang/AST/Attr.h index 817d66de1a..dd6f28f85e 100644 --- a/include/clang/AST/Attr.h +++ b/include/clang/AST/Attr.h @@ -15,6 +15,7 @@ #define LLVM_CLANG_AST_ATTR_H #include +#include #include #include -- 2.50.1