Skip to content

Commit

Permalink
types: remove the uz suffix
Browse files Browse the repository at this point in the history
Looks like Github CI has quite an outdated Visual C++ version that
doesn't support this suffix.
  • Loading branch information
Hedede committed Mar 11, 2024
1 parent 1103b53 commit bbed3ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/tests/any_buffer.c++
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

TestFile( "aw::any_buffer" );

constexpr auto buf_size = std::max({ 32uz, sizeof(std::string) });
constexpr auto buf_size = std::max({ size_t(32), sizeof(std::string) });

Test(any_buffer_basic) {
using namespace std::string_literals;
Expand Down

0 comments on commit bbed3ee

Please sign in to comment.