1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 03:02:36 +01:00

Remove spurious semicolons; NFC.

llvm-svn: 358895
This commit is contained in:
Aaron Ballman 2019-04-22 15:31:09 +00:00
parent 0d487de87f
commit 36a1b0220b

View File

@ -310,8 +310,8 @@ public:
create<std::string>(std::move(V));
}
Value(const llvm::SmallVectorImpl<char> &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<llvm::StringRef>(V);