From f3e0507e2e1786d029477cd08d088352926583e5 Mon Sep 17 00:00:00 2001 From: Virgile Prevosto <virgile.prevosto@m4x.org> Date: Mon, 2 Dec 2019 16:49:14 +0100 Subject: [PATCH] [tests] avoid empty struct warning --- tests/template/typedef_bts2320.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/template/typedef_bts2320.cpp b/tests/template/typedef_bts2320.cpp index 170e0d3..6c77972 100644 --- a/tests/template/typedef_bts2320.cpp +++ b/tests/template/typedef_bts2320.cpp @@ -1,4 +1,4 @@ template <typename> class A { - struct {}; + struct { char c; }; template <typename> struct B {}; }; -- GitLab