diff --git a/lldb/include/lldb/Utility/ReproducerInstrumentation.h b/lldb/include/lldb/Utility/ReproducerInstrumentation.h index 9dbe8dc547f5fd..71b85a26659283 100644 --- a/lldb/include/lldb/Utility/ReproducerInstrumentation.h +++ b/lldb/include/lldb/Utility/ReproducerInstrumentation.h @@ -253,7 +253,8 @@ struct NotImplementedTag {}; /// Return the deserialization tag for the given type T. template struct serializer_tag { - typedef typename std::conditional::value, ValueTag, NotImplementedTag>::type type; + typedef typename std::conditional::value, + ValueTag, NotImplementedTag>::type type; }; template struct serializer_tag { typedef diff --git a/lldb/source/Utility/ReproducerInstrumentation.cpp b/lldb/source/Utility/ReproducerInstrumentation.cpp index f8a0d661c5a573..c8a493ccd22b0c 100644 --- a/lldb/source/Utility/ReproducerInstrumentation.cpp +++ b/lldb/source/Utility/ReproducerInstrumentation.cpp @@ -35,8 +35,8 @@ template <> const char *Deserializer::Deserialize() { const char *str = m_buffer.data(); m_buffer = m_buffer.drop_front(pos + 1); #ifdef LLDB_REPRO_INSTR_TRACE - llvm::errs() << "Deserializing with " << LLVM_PRETTY_FUNCTION << " -> \"" - << str << "\"\n"; + llvm::errs() << "Deserializing with " << LLVM_PRETTY_FUNCTION << " -> \"" + << str << "\"\n"; #endif return str; }