diff options
author | Yuqian Yang <crupest@crupest.life> | 2025-08-18 17:49:31 +0800 |
---|---|---|
committer | Yuqian Yang <crupest@crupest.life> | 2025-08-18 17:49:31 +0800 |
commit | 73044013ab7d882150f32c959635eecbb5e8e17d (patch) | |
tree | 609ec8bb6223b1b3c95d53820e78a4b63438f227 /include/cru/base/platform | |
parent | 18c64a5e92f7d8583cb091881deae7611a2bce98 (diff) | |
download | cru-73044013ab7d882150f32c959635eecbb5e8e17d.tar.gz cru-73044013ab7d882150f32c959635eecbb5e8e17d.tar.bz2 cru-73044013ab7d882150f32c959635eecbb5e8e17d.zip |
Move platform exception.
Diffstat (limited to 'include/cru/base/platform')
-rw-r--r-- | include/cru/base/platform/Exception.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/include/cru/base/platform/Exception.h b/include/cru/base/platform/Exception.h deleted file mode 100644 index 74dd6ad4..00000000 --- a/include/cru/base/platform/Exception.h +++ /dev/null @@ -1,12 +0,0 @@ -#pragma once -#include "../Base.h" -#include "../Exception.h" - -namespace cru::platform { -class CRU_BASE_API PlatformException : public Exception { - public: - using Exception::Exception; // inherit constructors - - CRU_DEFAULT_DESTRUCTOR(PlatformException) -}; -} // namespace cru::platform |