From: Martin Storsjo Date: Fri, 20 Jul 2018 18:43:42 +0000 (+0000) Subject: Remove a superfluous semicolon X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bc0cffa673a8ae6666f101a583fce285b925bc50;p=llvm Remove a superfluous semicolon git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@337599 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Demangle/MicrosoftDemangle.cpp b/lib/Demangle/MicrosoftDemangle.cpp index 09892cf8993..c89f0cf80b7 100644 --- a/lib/Demangle/MicrosoftDemangle.cpp +++ b/lib/Demangle/MicrosoftDemangle.cpp @@ -1067,7 +1067,7 @@ CallingConv Demangler::demangleCallingConvention() { } return CallingConv::None; -}; +} StorageClass Demangler::demangleVariableStorageClass() { assert(std::isdigit(MangledName.front()));