diff options
author | crupest <crupest@outlook.com> | 2021-08-20 22:10:45 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-08-20 22:10:45 +0800 |
commit | e2e8ba559b0e7a797c083684b382ac4cbb2fdd5f (patch) | |
tree | 9b9e61142c490c53a5d7b3bba2c62ee6281a87db /include/cru/osx/Exception.hpp | |
parent | bcb879240f96764b8f17da2878fc0784c51b6054 (diff) | |
download | cru-e2e8ba559b0e7a797c083684b382ac4cbb2fdd5f.tar.gz cru-e2e8ba559b0e7a797c083684b382ac4cbb2fdd5f.tar.bz2 cru-e2e8ba559b0e7a797c083684b382ac4cbb2fdd5f.zip |
...
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 |