From f033617974a3c7bad402befd7c3d9246645dafcd Mon Sep 17 00:00:00 2001 From: Aaron Ballman Date: Mon, 22 Apr 2019 15:31:09 +0000 Subject: [PATCH] Remove spurious semicolons; NFC. llvm-svn: 358895 --- llvm/include/llvm/Support/JSON.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/include/llvm/Support/JSON.h b/llvm/include/llvm/Support/JSON.h index b2aaf68724d6..f0fec48e5a61 100644 --- a/llvm/include/llvm/Support/JSON.h +++ b/llvm/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); -- 2.34.1