Skip to content

Commit 746cd6f

Browse files
committed
added uint32_t support
1 parent 37212bb commit 746cd6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/argz/argz.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ namespace argz
2525
template <class T>
2626
using ref = std::reference_wrapper<T>;
2727

28-
using var = std::variant<ref<bool>, ref<int32_t>, ref<int64_t>, ref<uint64_t>, ref<std::string>>;
28+
using var = std::variant<ref<bool>, ref<int32_t>, ref<uint32_t>, ref<int64_t>, ref<uint64_t>, ref<std::string>>;
2929

3030
struct ids_t final {
3131
std::string_view id{};

0 commit comments

Comments
 (0)