From 69b75c43b4146ea0cc3fe4c8c9f9fc43afb82a4e Mon Sep 17 00:00:00 2001 From: Robert Reif Date: Sun, 15 Oct 2017 09:45:02 -0400 Subject: [PATCH] SymbolDatabase: fix wrong type in union test. --- test/testsymboldatabase.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testsymboldatabase.cpp b/test/testsymboldatabase.cpp index 8b675530a..d218c5917 100644 --- a/test/testsymboldatabase.cpp +++ b/test/testsymboldatabase.cpp @@ -5259,7 +5259,7 @@ private: " Fred(int x) : i(x) { }\n" " Fred(float x) : f(x) { }\n" " int i;\n" - " int f;\n" + " float f;\n" "};"); ASSERT_EQUALS("", errout.str());