From: Lang Hames Date: Thu, 24 Mar 2016 21:17:50 +0000 (+0000) Subject: [Support] Add ErrorInfo::ID static member definition. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=699d96535d26fd0ad5effff54634c02f89dca68c;p=platform%2Fupstream%2Fllvm.git [Support] Add ErrorInfo::ID static member definition. Somehow this got dropped in an earlier patch. llvm-svn: 264341 --- 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 {