diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-16 18:38:30 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-16 18:44:21 +0300 |
commit | 1e5e37a9d1af571e962671db95b23c7cc7ddce6d (patch) | |
tree | e4b9900e7f4c1973fa4670f5d43a140bc551098a /include/winapi/sid.hpp | |
parent | update cmake-common (diff) | |
download | winapi-common-1e5e37a9d1af571e962671db95b23c7cc7ddce6d.tar.gz winapi-common-1e5e37a9d1af571e962671db95b23c7cc7ddce6d.zip |
remove VS 2013 cruft
Diffstat (limited to 'include/winapi/sid.hpp')
-rw-r--r-- | include/winapi/sid.hpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/winapi/sid.hpp b/include/winapi/sid.hpp index f418b89..5a7c759 100644 --- a/include/winapi/sid.hpp +++ b/include/winapi/sid.hpp @@ -7,8 +7,6 @@ #include "buffer.hpp" -#include <boost/config.hpp> - #include <windows.h> #include <cstddef> @@ -18,7 +16,7 @@ namespace winapi { class Sid { public: - BOOST_STATIC_CONSTEXPR std::size_t MAX_SID_SIZE = SECURITY_MAX_SID_SIZE; + static constexpr std::size_t MAX_SID_SIZE = SECURITY_MAX_SID_SIZE; typedef SID Impl; |