Merge pull request #976 from IOBYTE/master

SymbolDatabase: fix wrong type in union test.
This commit is contained in:
orbitcowboy 2017-10-15 18:30:55 +02:00 committed by GitHub
commit 242ae757a2
1 changed files with 1 additions and 1 deletions

View File

@ -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());