Created
September 7, 2016 07:36
-
-
Save rikioy/580d59126d1ba9ca024ee010c965a7b1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| std::string itostring(uint64_t i) { | |
| char buffer[64] = {0}; | |
| snprintf(buffer, sizeof(buffer), "%lu", i); | |
| return std::string(buffer); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment