commit | 504be84c9fd485191c8e7ea3ce8dcbba2e2c4181 | [log] [tgz] |
---|---|---|
author | Jonas Devlieghere <jonas@devlieghere.com> | Wed Mar 06 00:52:48 2019 +0000 |
committer | Jonas Devlieghere <jonas@devlieghere.com> | Wed Mar 06 00:52:48 2019 +0000 |
tree | ff4990f3719d1d138e69338f5c58f73df1857d51 | |
parent | 787fe33434f6886bfa7378c7d18f11f8b290394b [diff] [blame] |
[Reproducers] Fix warnings without asserts Make sure the variable is used when asserts are compiled out. llvm-svn: 355464
diff --git a/lldb/include/lldb/Utility/ReproducerInstrumentation.h b/lldb/include/lldb/Utility/ReproducerInstrumentation.h index f10398e..ac67899 100644 --- a/lldb/include/lldb/Utility/ReproducerInstrumentation.h +++ b/lldb/include/lldb/Utility/ReproducerInstrumentation.h
@@ -261,6 +261,7 @@ void HandleReplayResultVoid() { unsigned result = Deserialize<unsigned>(); assert(result == 0); + (void)result; } private: