Skip to content
Snippets Groups Projects
Commit fdbb6053 authored by Raphael Grimm's avatar Raphael Grimm
Browse files

Add a semicolon after BOOST_GLOBAL_FIXTURE depending on the boost version

parent 397f0f44
No related branches found
No related tags found
No related merge requests found
......@@ -52,7 +52,11 @@ struct OutputConfiguration
std::ofstream logFile;
};
BOOST_GLOBAL_FIXTURE(OutputConfiguration);
#if BOOST_VERSION < 106200
BOOST_GLOBAL_FIXTURE(OutputConfiguration)
#else
BOOST_GLOBAL_FIXTURE(OutputConfiguration);
#endif
#endif
#endif /* _VirtualRobot_Test_h_ */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment