Skip to content

Commit

Permalink
Fix geocode compiler error
Browse files Browse the repository at this point in the history
  • Loading branch information
gwaldron committed Feb 7, 2024
1 parent 7b8926b commit c1ba332
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/osgEarth/Geocoder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ Geocoder::search(const std::string& input, const osgDB::Options* io_options)
std::shared_ptr<JobArena> arena;
if (ObjectStorage::get(io_options, arena))
{
Future<OutputData> out = Job(arena.get()).dispatch<OutputData>(geocode);
Future<OutputData> out = Job(arena.get()).dispatch(geocode);
return Geocoder::Results(out);
}
else
Expand Down

0 comments on commit c1ba332

Please sign in to comment.