Author: Martin Storsjö Date: 2020-09-03T11:19:40+03:00 New Revision: 13cde6733b5fec9eff5e9652686c3b02055e6169
URL: https://github.com/llvm/llvm-project/commit/13cde6733b5fec9eff5e9652686c3b02055e6169 DIFF: https://github.com/llvm/llvm-project/commit/13cde6733b5fec9eff5e9652686c3b02055e6169.diff LOG: [lldb] Remove a stray semicolon, fixing pedantic GCC warnings. NFC. Added: Modified: lldb/source/API/SBReproducer.cpp Removed: ################################################################################ diff --git a/lldb/source/API/SBReproducer.cpp b/lldb/source/API/SBReproducer.cpp index 233e55550b5b..ec1c85d24329 100644 --- a/lldb/source/API/SBReproducer.cpp +++ b/lldb/source/API/SBReproducer.cpp @@ -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)) {} _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits