From 187089d4128a8810ead8a6cac1137f8c311c6346 Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Mon, 15 Sep 2014 16:13:33 +0000 Subject: [PATCH] Spell out the template args for compilers having issues with the injected class name. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217780 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Bitcode/BitCodes.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/llvm/Bitcode/BitCodes.h b/include/llvm/Bitcode/BitCodes.h index 71e0d00da50..ed2dcf84f92 100644 --- a/include/llvm/Bitcode/BitCodes.h +++ b/include/llvm/Bitcode/BitCodes.h @@ -165,7 +165,8 @@ template <> struct isPodLike { static const bool value=true; }; class BitCodeAbbrev : public RefCountedBase { SmallVector OperandList; ~BitCodeAbbrev() {} - friend class RefCountedBase; // Only RefCountedBase is allowed to delete. + // Only RefCountedBase is allowed to delete. + friend class RefCountedBase; public: unsigned getNumOperandInfos() const { -- 2.34.1