Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion include/gul17/SmallVector.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@

#include <algorithm>
#include <array>
#include <cstdint>
#include <initializer_list>
#include <iterator>
#include <limits>
Expand Down Expand Up @@ -274,7 +275,7 @@ class SmallVector
/// \copydoc ValueType
using value_type = ValueType;
/// Unsigned integer type for indexing, number of elements, capacity
using SizeType = uint32_t;
using SizeType = std::uint32_t;
/// \copydoc SizeType
using size_type = SizeType;
/// Signed integer type for the difference of two iterators
Expand Down
Loading