From 699d96535d26fd0ad5effff54634c02f89dca68c Mon Sep 17 00:00:00 2001 From: Lang Hames Date: Thu, 24 Mar 2016 21:17:50 +0000 Subject: [PATCH] [Support] Add ErrorInfo::ID static member definition. Somehow this got dropped in an earlier patch. llvm-svn: 264341 --- llvm/include/llvm/Support/Error.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/llvm/include/llvm/Support/Error.h b/llvm/include/llvm/Support/Error.h index ed3d407..14d7ab0 100644 --- a/llvm/include/llvm/Support/Error.h +++ b/llvm/include/llvm/Support/Error.h @@ -291,6 +291,9 @@ private: static char ID; }; +template +char ErrorInfo::ID = 0; + /// Special ErrorInfo subclass representing a list of ErrorInfos. /// Instances of this class are constructed by joinError. class ErrorList final : public ErrorInfo { -- 2.7.4