From: Eric Christopher Date: Fri, 7 Mar 2014 21:30:49 +0000 (+0000) Subject: Actually include the ArrayRef header rather than rely on the forward X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=856eb29a6a62a73be41396aa695247656b95dea6;p=oota-llvm.git Actually include the ArrayRef header rather than rely on the forward declaration. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203287 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/MD5.h b/include/llvm/Support/MD5.h index b2b8c2d55b8..4eb8507ea34 100644 --- a/include/llvm/Support/MD5.h +++ b/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;