aboutsummaryrefslogtreecommitdiff
path: root/include/cru/common/platform/win/Exception.hpp
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2022-01-28 22:56:28 +0800
committercrupest <crupest@outlook.com>2022-01-28 22:56:28 +0800
commite7da93f75ba57fa4ab1ae1fd8053266ed09f92d8 (patch)
tree33f5017ebed5227f2066029237a736f53f7adcf9 /include/cru/common/platform/win/Exception.hpp
parentfb992c554110ddd28c18b2cbed79eee8e10cd4a9 (diff)
downloadcru-e7da93f75ba57fa4ab1ae1fd8053266ed09f92d8.tar.gz
cru-e7da93f75ba57fa4ab1ae1fd8053266ed09f92d8.tar.bz2
cru-e7da93f75ba57fa4ab1ae1fd8053266ed09f92d8.zip
...
Diffstat (limited to 'include/cru/common/platform/win/Exception.hpp')
-rw-r--r--include/cru/common/platform/win/Exception.hpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/cru/common/platform/win/Exception.hpp b/include/cru/common/platform/win/Exception.hpp
index 0774327f..4e332b4f 100644
--- a/include/cru/common/platform/win/Exception.hpp
+++ b/include/cru/common/platform/win/Exception.hpp
@@ -38,9 +38,7 @@ class CRU_BASE_API Win32Error : public platform::PlatformException {
public:
// ::GetLastError is automatically called to get the error code.
// The same as Win32Error(::GetLastError(), message)
- [[deprecated]] explicit Win32Error(std::string_view message);
explicit Win32Error(String message);
- [[deprecated]] Win32Error(DWORD error_code, std::string_view message);
Win32Error(DWORD error_code, String message);
CRU_DEFAULT_COPY(Win32Error)