Skip to content

Commit

Permalink
Remove pointless const
Browse files Browse the repository at this point in the history
  • Loading branch information
kevingranade authored Sep 11, 2020
1 parent c95c04f commit f142c03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/map.h
Original file line number Diff line number Diff line change
Expand Up @@ -1602,7 +1602,7 @@ class map
public:
void build_outside_cache( int zlev );
// Get a bitmap indicating which layers are potentially visible from the target layer.
std::bitset<OVERMAP_LAYERS> get_inter_level_visibility( const int origin_zlevel )const ;
std::bitset<OVERMAP_LAYERS> get_inter_level_visibility( int origin_zlevel ) const ;
// Builds a floor cache and returns true if the cache was invalidated.
// Used to determine if seen cache should be rebuilt.
bool build_floor_cache( int zlev );
Expand Down

0 comments on commit f142c03

Please sign in to comment.