[llvm] r373696 - [JITLink] Remove a redundant semicolon, silencing -Wpedantic warnings with GCC. NFC.
Martin Storsjo via llvm-commits
llvm-commits at lists.llvm.org
Fri Oct 4 00:05:22 PDT 2019
Author: mstorsjo
Date: Fri Oct 4 00:05:22 2019
New Revision: 373696
URL: http://llvm.org/viewvc/llvm-project?rev=373696&view=rev
Log:
[JITLink] Remove a redundant semicolon, silencing -Wpedantic warnings with GCC. NFC.
Modified:
llvm/trunk/include/llvm/ExecutionEngine/JITLink/JITLink.h
Modified: llvm/trunk/include/llvm/ExecutionEngine/JITLink/JITLink.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ExecutionEngine/JITLink/JITLink.h?rev=373696&r1=373695&r2=373696&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ExecutionEngine/JITLink/JITLink.h (original)
+++ llvm/trunk/include/llvm/ExecutionEngine/JITLink/JITLink.h Fri Oct 4 00:05:22 2019
@@ -972,7 +972,7 @@ createLookupContinuation(Continuation Co
};
return std::make_unique<Impl>(std::move(Cont));
-};
+}
/// Holds context for a single jitLink invocation.
class JITLinkContext {
More information about the llvm-commits
mailing list