diff options
author | lloyd <[email protected]> | 2013-03-27 13:26:53 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2013-03-27 13:26:53 +0000 |
commit | 86ecbb4fc9d4db13281a2cb689c604222900a6e7 (patch) | |
tree | 38d31f6b0aa96050b09fe52da1a7d3d88e269755 /src | |
parent | 0dfd29109aa7ce3665aeca3cc95afbafcf2b7be2 (diff) |
Avoid silly warning under GCC
Diffstat (limited to 'src')
-rw-r--r-- | src/utils/parsing.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/parsing.cpp b/src/utils/parsing.cpp index 1e90f2f6e..486f5fdef 100644 --- a/src/utils/parsing.cpp +++ b/src/utils/parsing.cpp @@ -14,7 +14,7 @@ namespace Botan { u32bit to_u32bit(const std::string& str) { - return std::stoul(str); + return std::stoul(str, nullptr); } /* |