summaryrefslogtreecommitdiffstats
path: root/lldb
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2019-02-21 17:18:06 +0000
committerJonas Devlieghere <jonas@devlieghere.com>2019-02-21 17:18:06 +0000
commite0ccb403c2e20e22efed5d08f1ea54aba86a828d (patch)
treefd6251bb1137ba09919270aaf48425aa6445c1d6 /lldb
parent9b900dc7deb248437e4a25f221b00d5621560feb (diff)
downloadbcm5719-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.cpp2
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 {
OpenPOWER on IntegriCloud