diff options
Diffstat (limited to 'include/cru/osx/Exception.hpp')
-rw-r--r-- | include/cru/osx/Exception.hpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/cru/osx/Exception.hpp b/include/cru/osx/Exception.hpp index 34c4a06c..5d057c65 100644 --- a/include/cru/osx/Exception.hpp +++ b/include/cru/osx/Exception.hpp @@ -2,8 +2,8 @@ #include "cru/platform/Exception.hpp" namespace cru::platform::osx { - class OsxException : PlatformException { - public: - using PlatformException::PlatformException; - }; -} +class OsxException : public PlatformException { + public: + using PlatformException::PlatformException; +}; +} // namespace cru::platform::osx |