Fixed weird compiler crash with gcc-4.8.2

I have no idea why this is helping, but it does.

I need to invest some time to simplify the templates so that compilers
aren't as stressed with it.
This commit is contained in:
rbock
2015-02-15 16:41:08 +01:00
parent 80bc0fcf5e
commit 9e1ecaf15a
2 changed files with 21 additions and 16 deletions

View File

@@ -6,18 +6,18 @@ macro (build_and_run arg)
add_test("${arg}" "${arg}")
endmacro ()
#build_and_run(BooleanExpressionTest)
#build_and_run(CustomQueryTest)
#build_and_run(InterpretTest)
#build_and_run(InsertTest)
#build_and_run(RemoveTest)
#build_and_run(UpdateTest)
#build_and_run(SelectTest)
#build_and_run(SelectTypeTest)
#build_and_run(FunctionTest)
#build_and_run(PreparedTest)
#build_and_run(Minimalistic)
#build_and_run(ResultTest)
build_and_run(BooleanExpressionTest)
build_and_run(CustomQueryTest)
build_and_run(InterpretTest)
build_and_run(InsertTest)
build_and_run(RemoveTest)
build_and_run(UpdateTest)
build_and_run(SelectTest)
build_and_run(SelectTypeTest)
build_and_run(FunctionTest)
build_and_run(PreparedTest)
build_and_run(Minimalistic)
build_and_run(ResultTest)
build_and_run(UnionTest)
build_and_run(WithTest)