Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
Fixed typedef of uint, since it doesn't exist on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
vbassn authored May 20, 2024
1 parent 8f5bda3 commit d261423
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cpp/include/Logging.h
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ class Printable
std::string str(size_t x) { return std::to_string(x); }

// Convert unsigned integer to string
std::string str(uint x) { return std::to_string(x); }
std::string str(unsigned int x) { return std::to_string(x); }

// Convert unsigned integer to string
//std::string str(unsigned int x) {return std::to_string(x); }
Expand Down

0 comments on commit d261423

Please sign in to comment.