mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-27 07:07:52 -05:00
Fix more gcc compilation issues
This commit is contained in:
@ -10,7 +10,7 @@ const std::string& IPakLoadException::DetailedMessage() const
|
||||
return m_message;
|
||||
}
|
||||
|
||||
char const* IPakLoadException::what() const
|
||||
char const* IPakLoadException::what() const noexcept
|
||||
{
|
||||
return "There was an error when trying to load an ipak file.";
|
||||
}
|
@ -10,5 +10,5 @@ public:
|
||||
explicit IPakLoadException(std::string message);
|
||||
|
||||
const std::string& DetailedMessage() const;
|
||||
char const* what() const override;
|
||||
char const* what() const noexcept override;
|
||||
};
|
||||
|
Reference in New Issue
Block a user