Mirror von
https://github.com/tkuschel/bees.git
synchronisiert 2026-06-19 06:57:54 +02:00
string: second argument to stoull is technically a nullptr
This comes up if too many compiler warnings are enabled. Signed-off-by: Zygo Blaxell <bees@furryterror.org>
Dieser Commit ist enthalten in:
+1
-1
@@ -16,7 +16,7 @@ namespace crucible {
|
|||||||
uint64_t
|
uint64_t
|
||||||
from_hex(const string &s)
|
from_hex(const string &s)
|
||||||
{
|
{
|
||||||
return stoull(s, 0, 0);
|
return stoull(s, nullptr, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
vector<string>
|
vector<string>
|
||||||
|
|||||||
In neuem Issue referenzieren
Einen Benutzer sperren