From 86ecbb4fc9d4db13281a2cb689c604222900a6e7 Mon Sep 17 00:00:00 2001 From: lloyd Date: Wed, 27 Mar 2013 13:26:53 +0000 Subject: Avoid silly warning under GCC --- src/utils/parsing.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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); } /* -- cgit v1.2.3