From 68f88752b30d66e0280ff4de95efed08898fb8ce Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Sat, 4 Jul 2015 09:22:11 +0200 Subject: [PATCH] Build: fix missing commas. --- code/OpenGEXExporter.h | 5 ++++- tools/assimp_view/AssetHelper.h | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/code/OpenGEXExporter.h b/code/OpenGEXExporter.h index c5bdd13ea..f2f5eb54b 100644 --- a/code/OpenGEXExporter.h +++ b/code/OpenGEXExporter.h @@ -45,13 +45,16 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #ifndef ASSIMP_BUILD_NO_OPENGEX_IMPORTER namespace Assimp { + +struct aiScene; + namespace OpenGEX { class OpenGEXExporter { public: OpenGEXExporter(); ~OpenGEXExporter(); - bool export( const char *filename, const aiScene* pScene ); + bool exportScene( const char *filename, const aiScene* pScene ); }; } // Namespace openGEX } // Namespace Assimp diff --git a/tools/assimp_view/AssetHelper.h b/tools/assimp_view/AssetHelper.h index 05ba1f6ab..f71d8f510 100644 --- a/tools/assimp_view/AssetHelper.h +++ b/tools/assimp_view/AssetHelper.h @@ -161,7 +161,7 @@ namespace AssimpView { piLightmapTexture( NULL ), fOpacity(), fShininess(), - fSpecularStrength() + fSpecularStrength(), twosided( false ), pvOriginalNormals( NULL ) {}