From: Martin Storsjo Date: Fri, 4 Oct 2019 07:05:22 +0000 (+0000) Subject: [JITLink] Remove a redundant semicolon, silencing -Wpedantic warnings with GCC. NFC. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8ddbcd1404ed783c00afd8df4fc620a1c93f0b4d;p=llvm [JITLink] Remove a redundant semicolon, silencing -Wpedantic warnings with GCC. NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@373696 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ExecutionEngine/JITLink/JITLink.h b/include/llvm/ExecutionEngine/JITLink/JITLink.h index 14c403e6b9c..6d44745869e 100644 --- a/include/llvm/ExecutionEngine/JITLink/JITLink.h +++ b/include/llvm/ExecutionEngine/JITLink/JITLink.h @@ -972,7 +972,7 @@ createLookupContinuation(Continuation Cont) { }; return std::make_unique(std::move(Cont)); -}; +} /// Holds context for a single jitLink invocation. class JITLinkContext {