diff options
| author | Yuqian Yang <crupest@crupest.life> | 2025-11-04 22:17:27 +0800 |
|---|---|---|
| committer | Yuqian Yang <crupest@crupest.life> | 2025-11-04 22:17:27 +0800 |
| commit | ef6cff0f308d49326bbe0c3b557cb8ab6cca455b (patch) | |
| tree | 34914a6e76093d892ff10f8400d04c285eeab2c8 /include/cru/base/platform | |
| parent | 8bea03e0811588e741050b598b8123865b333999 (diff) | |
| download | cru-ef6cff0f308d49326bbe0c3b557cb8ab6cca455b.tar.gz cru-ef6cff0f308d49326bbe0c3b557cb8ab6cca455b.tar.bz2 cru-ef6cff0f308d49326bbe0c3b557cb8ab6cca455b.zip | |
Move base Exception.h to Base.h.
Diffstat (limited to 'include/cru/base/platform')
| -rw-r--r-- | include/cru/base/platform/unix/EventLoop.h | 1 | ||||
| -rw-r--r-- | include/cru/base/platform/web/WebException.h | 2 | ||||
| -rw-r--r-- | include/cru/base/platform/win/Exception.h | 2 |
3 files changed, 2 insertions, 3 deletions
diff --git a/include/cru/base/platform/unix/EventLoop.h b/include/cru/base/platform/unix/EventLoop.h index 0bc68138..b039cfbf 100644 --- a/include/cru/base/platform/unix/EventLoop.h +++ b/include/cru/base/platform/unix/EventLoop.h @@ -5,7 +5,6 @@ #endif #include "../../Base.h" -#include "../../Exception.h" #include "../../Timer.h" #include "UnixFile.h" diff --git a/include/cru/base/platform/web/WebException.h b/include/cru/base/platform/web/WebException.h index 85454f82..ba90bec7 100644 --- a/include/cru/base/platform/web/WebException.h +++ b/include/cru/base/platform/web/WebException.h @@ -2,7 +2,7 @@ #ifdef CRU_PLATFORM_EMSCRIPTEN -#include "../Exception.h" +#include "../../Base.h" namespace cru::platform::web { class WebException : public PlatformException { diff --git a/include/cru/base/platform/win/Exception.h b/include/cru/base/platform/win/Exception.h index 21851bb9..db98e7b6 100644 --- a/include/cru/base/platform/win/Exception.h +++ b/include/cru/base/platform/win/Exception.h @@ -6,7 +6,7 @@ #include "WinPreConfig.h" -#include "../../Exception.h" +#include "../../Base.h" namespace cru::platform::win { class CRU_BASE_API HResultError : public Exception { |
