From 526847fe2041b2e3018a20dc2fb4d12bfc0242cf Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Fri, 7 Mar 2014 21:30:49 +0000 Subject: [PATCH] Actually include the ArrayRef header rather than rely on the forward declaration. llvm-svn: 203287 --- llvm/include/llvm/Support/MD5.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/llvm/include/llvm/Support/MD5.h b/llvm/include/llvm/Support/MD5.h index b2b8c2d55b87..4eb8507ea34f 100644 --- a/llvm/include/llvm/Support/MD5.h +++ b/llvm/include/llvm/Support/MD5.h @@ -28,13 +28,12 @@ #ifndef LLVM_SYSTEM_MD5_H #define LLVM_SYSTEM_MD5_H +#include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/SmallString.h" #include "llvm/Support/DataTypes.h" namespace llvm { -template class ArrayRef; - class MD5 { // Any 32-bit or wider unsigned integer data type will do. typedef uint32_t MD5_u32plus;