diff --git a/examples/Benchmarks/BenchmarkDemo.cpp b/examples/Benchmarks/BenchmarkDemo.cpp index ca9f75786..f659d017c 100644 --- a/examples/Benchmarks/BenchmarkDemo.cpp +++ b/examples/Benchmarks/BenchmarkDemo.cpp @@ -1273,7 +1273,7 @@ void BenchmarkDemo::exitPhysics() -struct CommonExampleInterface* BenchmarkCreateFunc(struct CommonExampleOptions& options) +CommonExampleInterface* BenchmarkCreateFunc(struct CommonExampleOptions& options) { return new BenchmarkDemo(options.m_guiHelper,options.m_option); } \ No newline at end of file diff --git a/examples/Importers/ImportBsp/ImportBspExample.cpp b/examples/Importers/ImportBsp/ImportBspExample.cpp index 038342379..eec8a4fb9 100644 --- a/examples/Importers/ImportBsp/ImportBspExample.cpp +++ b/examples/Importers/ImportBsp/ImportBspExample.cpp @@ -285,7 +285,7 @@ char* makeExeToBspFilename(const char* lpCmdLine) } -struct CommonExampleInterface* ImportBspCreateFunc(struct CommonExampleOptions& options) +CommonExampleInterface* ImportBspCreateFunc(struct CommonExampleOptions& options) { BspDemo* demo = new BspDemo(options.m_guiHelper); diff --git a/examples/RenderingExamples/CoordinateSystemDemo.cpp b/examples/RenderingExamples/CoordinateSystemDemo.cpp index 37ecc7f30..7f35af853 100644 --- a/examples/RenderingExamples/CoordinateSystemDemo.cpp +++ b/examples/RenderingExamples/CoordinateSystemDemo.cpp @@ -156,7 +156,7 @@ public: } }; -struct CommonExampleInterface* CoordinateSystemCreateFunc(struct CommonExampleOptions& options) +CommonExampleInterface* CoordinateSystemCreateFunc(struct CommonExampleOptions& options) { return new CoordinateSystemDemo(options.m_guiHelper->getAppInterface()); }