Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/grid/MLSMap.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ namespace maps { namespace grid
: Base(num_cells, resolution)
, config(config_)
{
// TODO assert that config is compatible to SurfaceType ...
LOG_FATAL_S << "Internal Error: Update model in MLS Config is not same as the MLSMap SurfaceType";
throw std::runtime_error("Internal Error: Update model in MLS Config is not same as the MLSMap SurfaceType");
}

MLSMap()
Expand Down