summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/assimp/code/XFileExporter.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/assimp/code/XFileExporter.h')
-rw-r--r--src/3rdparty/assimp/code/XFileExporter.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/3rdparty/assimp/code/XFileExporter.h b/src/3rdparty/assimp/code/XFileExporter.h
index c33de3347..e45fd7983 100644
--- a/src/3rdparty/assimp/code/XFileExporter.h
+++ b/src/3rdparty/assimp/code/XFileExporter.h
@@ -2,7 +2,8 @@
Open Asset Import Library (assimp)
----------------------------------------------------------------------
-Copyright (c) 2006-2016, assimp team
+Copyright (c) 2006-2017, assimp team
+
All rights reserved.
Redistribution and use of this software in source and binary forms,
@@ -92,7 +93,10 @@ protected:
void PushTag() { startstr.append( " "); }
/// Leaves an element, decreasing the indentation
- void PopTag() { ai_assert( startstr.length() > 1); startstr.erase( startstr.length() - 2); }
+ void PopTag() {
+ ai_assert( startstr.length() > 1);
+ startstr.erase( startstr.length() - 2);
+ }
public:
/// Stringstream to write all output into
@@ -107,7 +111,7 @@ protected:
const ExportProperties* mProperties;
/// write a path
- void writePath(aiString path);
+ void writePath(const aiString &path);
/// The IOSystem for output
IOSystem* mIOSystem;