From 30cd60ff828e4600e3b91e071486a5b96e27b362 Mon Sep 17 00:00:00 2001 From: Albin Bernhardsson Date: Thu, 24 Nov 2016 13:26:18 +0100 Subject: [PATCH] Remove unnecessary semicolons --- code/Exporter.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/Exporter.cpp b/code/Exporter.cpp index 26cb5e998..ce134f0a3 100644 --- a/code/Exporter.cpp +++ b/code/Exporter.cpp @@ -602,28 +602,28 @@ bool ExportProperties :: HasPropertyInteger(const char* szName) const bool ExportProperties :: HasPropertyBool(const char* szName) const { return HasGenericProperty(mIntProperties, szName); -}; +} // ------------------------------------------------------------------------------------------------ // Has a configuration property bool ExportProperties :: HasPropertyFloat(const char* szName) const { return HasGenericProperty(mFloatProperties, szName); -}; +} // ------------------------------------------------------------------------------------------------ // Has a configuration property bool ExportProperties :: HasPropertyString(const char* szName) const { return HasGenericProperty(mStringProperties, szName); -}; +} // ------------------------------------------------------------------------------------------------ // Has a configuration property bool ExportProperties :: HasPropertyMatrix(const char* szName) const { return HasGenericProperty(mMatrixProperties, szName); -}; +} #endif // !ASSIMP_BUILD_NO_EXPORT