[llvm] r343068 - [ORC] Remove a superfluous semicolon, fixing warnings. NFC.
Martin Storsjo via llvm-commits
llvm-commits at lists.llvm.org
Tue Sep 25 23:13:04 PDT 2018
Author: mstorsjo
Date: Tue Sep 25 23:13:03 2018
New Revision: 343068
URL: http://llvm.org/viewvc/llvm-project?rev=343068&view=rev
Log:
[ORC] Remove a superfluous semicolon, fixing warnings. NFC.
Modified:
llvm/trunk/include/llvm/ExecutionEngine/Orc/LazyReexports.h
Modified: llvm/trunk/include/llvm/ExecutionEngine/Orc/LazyReexports.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ExecutionEngine/Orc/LazyReexports.h?rev=343068&r1=343067&r2=343068&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ExecutionEngine/Orc/LazyReexports.h (original)
+++ llvm/trunk/include/llvm/ExecutionEngine/Orc/LazyReexports.h Tue Sep 25 23:13:03 2018
@@ -73,7 +73,7 @@ public:
createNotifyResolvedFunction(NotifyResolvedImpl NotifyResolved) {
return llvm::make_unique<NotifyResolvedFunctionImpl<NotifyResolvedImpl>>(
std::move(NotifyResolved));
- };
+ }
// Return a free call-through trampoline and bind it to look up and call
// through to the given symbol.
More information about the llvm-commits
mailing list