|
@@ -58,13 +58,10 @@ using std::runtime_error;
|
|
|
|
|
|
class ASSIMP_API DeadlyErrorBase : public runtime_error {
|
|
|
protected:
|
|
|
- /** Constructor with arguments */
|
|
|
- explicit DeadlyErrorBase(const std::string& errorText);
|
|
|
-
|
|
|
- explicit DeadlyErrorBase(Assimp::Formatter::format f);
|
|
|
+ DeadlyErrorBase(Assimp::Formatter::format f);
|
|
|
|
|
|
template<typename... T, typename U>
|
|
|
- explicit DeadlyErrorBase(Assimp::Formatter::format f, U&& u, T&&... args)
|
|
|
+ DeadlyErrorBase(Assimp::Formatter::format f, U&& u, T&&... args)
|
|
|
: DeadlyErrorBase(std::move(f << std::forward<U>(u)), std::forward<T>(args)...)
|
|
|
{
|
|
|
}
|