mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
fix build warnings
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
56827d5725
commit
d939c05e72
2 changed files with 12 additions and 10 deletions
|
@ -622,7 +622,7 @@ namespace datalog {
|
|||
}
|
||||
|
||||
bool string_to_uint64(const char * s, uint64_t & res) {
|
||||
#if _WINDOWS
|
||||
#if 1
|
||||
int converted = sscanf_s(s, "%I64u", &res);
|
||||
#else
|
||||
int converted = sscanf(s, "%llu", &res);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue