Skip to content
Snippets Groups Projects
Commit 364516e8 authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

DRTVWR-575: GCC prefers std::make_signed<std::size_t> for llssize.

parent 7d05ade3
No related branches found
No related tags found
No related merge requests found
...@@ -41,7 +41,7 @@ typedef unsigned int U32; ...@@ -41,7 +41,7 @@ typedef unsigned int U32;
// to express an index that might go negative // to express an index that might go negative
// (ssize_t is provided by SOME compilers, don't collide) // (ssize_t is provided by SOME compilers, don't collide)
typedef typename std::make_signed<size_t>::type llssize; typedef typename std::make_signed<std::size_t>::type llssize;
#if LL_WINDOWS #if LL_WINDOWS
// https://docs.microsoft.com/en-us/cpp/build/reference/zc-wchar-t-wchar-t-is-native-type // https://docs.microsoft.com/en-us/cpp/build/reference/zc-wchar-t-wchar-t-is-native-type
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment