Skip to content

Commit 09d8f10

Browse files
committed
push
1 parent ff5ed58 commit 09d8f10

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

include/geode/basic/mapping.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,14 +94,14 @@ namespace geode
9494
out2in_.reserve( capacity );
9595
}
9696

97-
size_t size_in() const
97+
index_t size_in() const
9898
{
99-
return in2out_.size();
99+
return static_cast< index_t >( in2out_.size() );
100100
}
101101

102-
size_t size_out() const
102+
index_t size_out() const
103103
{
104-
return out2in_.size();
104+
return static_cast< index_t >( out2in_.size() );
105105
}
106106

107107
const Storage< T2 >& in2out( const T1& in ) const

0 commit comments

Comments
 (0)