diff options
Diffstat (limited to 'lldb/source/Utility/ReproducerInstrumentation.cpp')
| -rw-r--r-- | lldb/source/Utility/ReproducerInstrumentation.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/source/Utility/ReproducerInstrumentation.cpp b/lldb/source/Utility/ReproducerInstrumentation.cpp index b274a10c98fd..e5bd2ba4b625 100644 --- a/lldb/source/Utility/ReproducerInstrumentation.cpp +++ b/lldb/source/Utility/ReproducerInstrumentation.cpp @@ -8,9 +8,9 @@ #include "lldb/Utility/ReproducerInstrumentation.h" #include "lldb/Utility/Reproducer.h" +#include <cstdio> +#include <cstdlib> #include <limits> -#include <stdio.h> -#include <stdlib.h> #include <thread> using namespace lldb_private; @@ -193,8 +193,8 @@ unsigned ObjectToIndex::GetIndexForObjectImpl(const void *object) { } Recorder::Recorder() - : m_serializer(nullptr), m_pretty_func(), m_pretty_args(), - m_local_boundary(false), m_result_recorded(true), + : m_pretty_func(), m_pretty_args(), + m_sequence(std::numeric_limits<unsigned>::max()) { if (!g_global_boundary) { g_global_boundary = true; |
