浏览代码

Build: fix missing commas.

Kim Kulling 10 年之前
父节点
当前提交
68f88752b3
共有 2 个文件被更改,包括 5 次插入2 次删除
  1. 4 1
      code/OpenGEXExporter.h
  2. 1 1
      tools/assimp_view/AssetHelper.h

+ 4 - 1
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

+ 1 - 1
tools/assimp_view/AssetHelper.h

@@ -161,7 +161,7 @@ namespace AssimpView {
                 piLightmapTexture( NULL ),
                 fOpacity(),
                 fShininess(),
-                fSpecularStrength()
+                fSpecularStrength(),
                 twosided( false ),
                 pvOriginalNormals( NULL )
             {}