forked from OSchip/llvm-project
[lldb/Reproducers] Fix reproducer instrumentation formatting (NFC)
This commit is contained in:
parent
056f01f895
commit
12c185ac5e
|
@ -253,7 +253,8 @@ struct NotImplementedTag {};
|
|||
|
||||
/// Return the deserialization tag for the given type T.
|
||||
template <class T> struct serializer_tag {
|
||||
typedef typename std::conditional<std::is_trivially_copyable<T>::value, ValueTag, NotImplementedTag>::type type;
|
||||
typedef typename std::conditional<std::is_trivially_copyable<T>::value,
|
||||
ValueTag, NotImplementedTag>::type type;
|
||||
};
|
||||
template <class T> struct serializer_tag<T *> {
|
||||
typedef
|
||||
|
|
|
@ -35,8 +35,8 @@ template <> const char *Deserializer::Deserialize<const char *>() {
|
|||
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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue