[lldb] Remove a stray semicolon, fixing pedantic GCC warnings. NFC.
authorMartin Storsjö <martin@martin.st>
Thu, 3 Sep 2020 08:19:40 +0000 (11:19 +0300)
committerMartin Storsjö <martin@martin.st>
Thu, 3 Sep 2020 08:19:40 +0000 (11:19 +0300)
lldb/source/API/SBReproducer.cpp

index 233e555..ec1c85d 100644 (file)
@@ -31,7 +31,7 @@ using namespace lldb_private;
 using namespace lldb_private::repro;
 
 SBReplayOptions::SBReplayOptions()
-    : m_opaque_up(std::make_unique<ReplayOptions>()){};
+    : m_opaque_up(std::make_unique<ReplayOptions>()){}
 
 SBReplayOptions::SBReplayOptions(const SBReplayOptions &rhs)
     : m_opaque_up(std::make_unique<ReplayOptions>(*rhs.m_opaque_up)) {}