mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-28 23:11:58 +00:00
- use std::runtime_error instead as the constructor on std::exception is a MSVC extension
This commit is contained in:
parent
bced30d1e3
commit
e02367dd09
1 changed files with 2 additions and 2 deletions
|
@ -80,10 +80,10 @@ protected:
|
||||||
char m_Message[MAX_ERRORTEXT];
|
char m_Message[MAX_ERRORTEXT];
|
||||||
};
|
};
|
||||||
|
|
||||||
class CNoRunExit : public std::exception
|
class CNoRunExit : public std::runtime_error
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CNoRunExit() : std::exception("NoRunExit")
|
CNoRunExit() : std::runtime_error("NoRunExit")
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue