Skip to content

Commit

Permalink
fix: windows debug solution
Browse files Browse the repository at this point in the history
  • Loading branch information
phacUFPE committed Oct 3, 2024
1 parent 1b03d6d commit 5e06489
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions source/selection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,6 @@ void Selection::add(const Tile* tile, SpawnNpc* spawnNpc) {
void Selection::add(const Tile* tile, const std::vector<Monster*> &monsters) {
ASSERT(subsession);
ASSERT(tile);
ASSERT(monster);

// Make a copy of the tile with the monsters selected
for (const auto monster : monsters) {
Expand Down Expand Up @@ -249,7 +248,6 @@ void Selection::remove(Tile* tile, SpawnNpc* spawnNpc) {
void Selection::remove(Tile* tile, const std::vector<Monster*> &monsters) {
ASSERT(subsession);
ASSERT(tile);
ASSERT(monster);

std::vector<Monster*> selectedMonsters;
for (const auto monster : monsters) {
Expand Down

0 comments on commit 5e06489

Please sign in to comment.