Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
cldellow committed Mar 26, 2024
1 parent de4aabb commit 0dcc093
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions include/tile_coordinates_set.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#ifndef TILE_COORDINATES_SET_H
#define TILE_COORDINATES_SET_H

#include <cstddef>
#include "coordinates.h"

// Interface representing a bitmap of tiles of interest at a given zoom.
Expand Down
2 changes: 1 addition & 1 deletion src/tile_coordinates_set.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@ size_t LossyTileCoordinatesSet::zoom() const {
}

void LossyTileCoordinatesSet::set(TileCoordinate x, TileCoordinate y) {
throw std::logic_error("LossyTileCoordinatesSet::set() is not implemented; LossyTileCoordinatesSet is read-only");
throw std::runtime_error("LossyTileCoordinatesSet::set() is not implemented; LossyTileCoordinatesSet is read-only");
}

0 comments on commit 0dcc093

Please sign in to comment.