summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/assimp/code/Exceptional.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/assimp/code/Exceptional.h')
-rw-r--r--src/3rdparty/assimp/code/Exceptional.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/3rdparty/assimp/code/Exceptional.h b/src/3rdparty/assimp/code/Exceptional.h
index e04da757c..5109b8f07 100644
--- a/src/3rdparty/assimp/code/Exceptional.h
+++ b/src/3rdparty/assimp/code/Exceptional.h
@@ -42,7 +42,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#define INCLUDED_EXCEPTIONAL_H
#include <stdexcept>
-#include "DefaultIOStream.h"
+#include <assimp/DefaultIOStream.h>
using std::runtime_error;
#ifdef _MSC_VER
@@ -58,8 +58,8 @@ class DeadlyImportError
{
public:
/** Constructor with arguments */
- explicit DeadlyImportError( const std::string& pErrorText)
- : runtime_error(pErrorText)
+ explicit DeadlyImportError( const std::string& errorText)
+ : runtime_error(errorText)
{
}