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 /src/path.cpp | |
parent | update cmake-common (diff) | |
download | winapi-common-1e5e37a9d1af571e962671db95b23c7cc7ddce6d.tar.gz winapi-common-1e5e37a9d1af571e962671db95b23c7cc7ddce6d.zip |
remove VS 2013 cruft
Diffstat (limited to '')
-rw-r--r-- | src/path.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/path.cpp b/src/path.cpp index 7848df2..409fc44 100644 --- a/src/path.cpp +++ b/src/path.cpp @@ -9,6 +9,7 @@ #include <windows.h> +#include <cstddef> #include <limits> #include <stdexcept> #include <string> @@ -18,7 +19,7 @@ namespace winapi { namespace { std::wstring do_canonicalize(const std::wstring& path) { - BOOST_STATIC_CONSTEXPR std::size_t init_buffer_size = MAX_PATH; + static constexpr std::size_t init_buffer_size = MAX_PATH; static_assert(init_buffer_size > 0, "init_buffer_size must be positive"); std::vector<wchar_t> buffer; |