mirror of
https://github.com/bkaradzic/bgfx.git
synced 2026-02-17 20:52:36 +01:00
Removed throws from openctm.
This commit is contained in:
4
3rdparty/openctm/lib/openctmpp.h
vendored
4
3rdparty/openctm/lib/openctmpp.h
vendored
@@ -95,7 +95,7 @@ class CTMimporter {
|
||||
{
|
||||
CTMenum err = ctmGetError(mContext);
|
||||
if(err != CTM_NONE)
|
||||
throw ctm_error(err);
|
||||
abort(); //throw ctm_error(err);
|
||||
}
|
||||
|
||||
public:
|
||||
@@ -251,7 +251,7 @@ class CTMexporter {
|
||||
{
|
||||
CTMenum err = ctmGetError(mContext);
|
||||
if(err != CTM_NONE)
|
||||
throw ctm_error(err);
|
||||
abort(); //throw ctm_error(err);
|
||||
}
|
||||
|
||||
public:
|
||||
|
||||
2
3rdparty/openctm/tools/dae.cpp
vendored
2
3rdparty/openctm/tools/dae.cpp
vendored
@@ -168,7 +168,7 @@ Source& GetSource(map<string, Source >& sources, map<string, vector<Input> >& ve
|
||||
|
||||
}
|
||||
} else {
|
||||
throw string("Error");
|
||||
abort(); //throw string("Error");
|
||||
}
|
||||
|
||||
return srcIterator->second;
|
||||
|
||||
Reference in New Issue
Block a user