Skip to content

Commit 17498ce

Browse files
authored
Wrong definition of __uint128_t
1 parent e56fb21 commit 17498ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ansi-c/ansi_c_internal_additions.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ void ansi_c_internal_additions(std::string &code)
281281
if(config.ansi_c.long_int_width>=64)
282282
{
283283
code+="typedef signed __int128 __int128_t;\n"
284-
"typedef signed __int128 __uint128_t;\n";
284+
"typedef unsigned __int128 __uint128_t;\n";
285285
}
286286
}
287287

0 commit comments

Comments
 (0)