Commit 12c185ac authored by Jonas Devlieghere's avatar Jonas Devlieghere
Browse files

[lldb/Reproducers] Fix reproducer instrumentation formatting (NFC)

parent 056f01f8
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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
+2 −2

File changed.

Contains only whitespace changes.