From: Aaron Ballman Date: Mon, 22 Apr 2019 15:31:09 +0000 (+0000) Subject: Remove spurious semicolons; NFC. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=363521d9e5388fc78b82d16559d7d082cc05734a;p=llvm Remove spurious semicolons; NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@358895 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/JSON.h b/include/llvm/Support/JSON.h index b2aaf68724d..f0fec48e5a6 100644 --- a/include/llvm/Support/JSON.h +++ b/include/llvm/Support/JSON.h @@ -310,8 +310,8 @@ public: create(std::move(V)); } Value(const llvm::SmallVectorImpl &V) - : Value(std::string(V.begin(), V.end())){}; - Value(const llvm::formatv_object_base &V) : Value(V.str()){}; + : Value(std::string(V.begin(), V.end())) {} + Value(const llvm::formatv_object_base &V) : Value(V.str()) {} // Strings: types with reference semantics. Must be valid UTF-8. Value(StringRef V) : Type(T_StringRef) { create(V);