Skip to content

Commit 9adee06

Browse files
fix ci
1 parent 6c5a8be commit 9adee06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/extractor/obstacles.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ ObstacleMap::GetType ObstacleMap::get(NodeID from, NodeID to, Obstacle::Type typ
6565
{
6666
auto &[from_id, to_id, obstacle] = kv.second;
6767
return (from_id == SPECIAL_NODEID || from_id == from) &&
68-
(u_int16_t(obstacle.type) & u_int16_t(type));
68+
(uint16_t(obstacle.type) & uint16_t(type));
6969
};
7070
return iter | boost::adaptors::filtered(from_filter) | boost::adaptors::transformed(transf);
7171
}

0 commit comments

Comments
 (0)