diff options
| author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-02-21 17:18:06 +0000 |
|---|---|---|
| committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-02-21 17:18:06 +0000 |
| commit | e0ccb403c2e20e22efed5d08f1ea54aba86a828d (patch) | |
| tree | fd6251bb1137ba09919270aaf48425aa6445c1d6 /lldb | |
| parent | 9b900dc7deb248437e4a25f221b00d5621560feb (diff) | |
| download | bcm5719-llvm-e0ccb403c2e20e22efed5d08f1ea54aba86a828d.tar.gz bcm5719-llvm-e0ccb403c2e20e22efed5d08f1ea54aba86a828d.zip | |
[unittest] Fix missing user-provided default constructor
error: default initialization of an object of const type 'const Pod'
without a user-provided default constructor
llvm-svn: 354602
Diffstat (limited to 'lldb')
| -rw-r--r-- | lldb/unittests/Utility/ReproducerInstrumentationTest.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/unittests/Utility/ReproducerInstrumentationTest.cpp b/lldb/unittests/Utility/ReproducerInstrumentationTest.cpp index ec708f6e6ca..4f634ce2385 100644 --- a/lldb/unittests/Utility/ReproducerInstrumentationTest.cpp +++ b/lldb/unittests/Utility/ReproducerInstrumentationTest.cpp @@ -41,6 +41,8 @@ struct Pod { unsigned long long k = 7; unsigned long l = 8; unsigned short m = 9; + + Pod() {} }; class TestingRegistry : public Registry { |

