[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
This commit is contained in:
Jonas Devlieghere 2019-02-21 17:18:06 +00:00
parent 9b900dc7de
commit e0ccb403c2
1 changed files with 2 additions and 0 deletions

View File

@ -41,6 +41,8 @@ struct Pod {
unsigned long long k = 7;
unsigned long l = 8;
unsigned short m = 9;
Pod() {}
};
class TestingRegistry : public Registry {