summaryrefslogtreecommitdiff
path: root/unittests/Support/TypeBuilderTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'unittests/Support/TypeBuilderTest.cpp')
-rw-r--r--unittests/Support/TypeBuilderTest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/unittests/Support/TypeBuilderTest.cpp b/unittests/Support/TypeBuilderTest.cpp
index 20d0e73914..1d3225726e 100644
--- a/unittests/Support/TypeBuilderTest.cpp
+++ b/unittests/Support/TypeBuilderTest.cpp
@@ -167,13 +167,13 @@ TEST(TypeBuilderTest, Context) {
&(TypeBuilder<types::i<1>, true>::get(context2))->getContext());
}
-class MyType {
+struct MyType {
int a;
int *b;
void *array[1];
};
-class MyPortableType {
+struct MyPortableType {
int32_t a;
int32_t *b;
void *array[1];