Skip to content

Commit 4a63c5a

Browse files
gimhaelillwieckz
authored andcommitted
Linux64 compilation fixes.
1 parent 902f075 commit 4a63c5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crnlib/crn_vector.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ bool elemental_vector::increase_capacity(uint min_new_capacity, bool grow_hint,
1919
if (m_capacity >= min_new_capacity)
2020
return true;
2121

22-
size_t new_capacity = min_new_capacity;
22+
ptr_bits_t new_capacity = min_new_capacity;
2323
if ((grow_hint) && (!math::is_power_of_2(new_capacity)))
2424
new_capacity = math::next_pow2(new_capacity);
2525

0 commit comments

Comments
 (0)