diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-06-09 07:37:01 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-06-09 07:37:07 +0200 |
| commit | d36618585de606d94c2a7a57bfa227ad1ab15517 (patch) | |
| tree | 13aa749ea2c9a5de5e667da141d450c7edd0e646 /doc | |
| parent | Merge #8172: Fix two warnings for comparison between signed and unsigned (diff) | |
| parent | util: Add ParseUInt32 and ParseUInt64 (diff) | |
| download | discoin-d36618585de606d94c2a7a57bfa227ad1ab15517.tar.xz discoin-d36618585de606d94c2a7a57bfa227ad1ab15517.zip | |
Merge #8168: util: Add ParseUInt32 and ParseUInt64
e012f3c util: Add ParseUInt32 and ParseUInt64 (Wladimir J. van der Laan)
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/developer-notes.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/developer-notes.md b/doc/developer-notes.md index add2fb500..e40b73ffa 100644 --- a/doc/developer-notes.md +++ b/doc/developer-notes.md @@ -323,7 +323,7 @@ Strings and formatting buffer overflows and surprises with `\0` characters. Also some C string manipulations tend to act differently depending on platform, or even the user locale -- Use `ParseInt32`, `ParseInt64`, `ParseDouble` from `utilstrencodings.h` for number parsing +- Use `ParseInt32`, `ParseInt64`, `ParseUInt32`, `ParseUInt64`, `ParseDouble` from `utilstrencodings.h` for number parsing - *Rationale*: These functions do overflow checking, and avoid pesky locale issues |