Skip to content

Commit 7da4ff7

Browse files
committed
Add missing uint, see #752
1 parent fdeb700 commit 7da4ff7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

include/cpp2util.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,8 +309,9 @@ using u64 = std::uint64_t ;
309309
// short
310310
using ushort = unsigned short;
311311
// int
312-
using ulong = unsigned long;
312+
using uint = unsigned int;
313313
// long
314+
using ulong = unsigned long;
314315
using longlong = long long;
315316
using ulonglong = unsigned long long;
316317
using longdouble = long double;

0 commit comments

Comments
 (0)