Skip to content
This repository has been archived by the owner on Aug 22, 2023. It is now read-only.

Commit

Permalink
made compilable on gcc 4.9 (o jessie...)
Browse files Browse the repository at this point in the history
  • Loading branch information
vaclavblazek committed Sep 3, 2019
1 parent 613a65c commit 9fd7bfc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion externals/buildsys/cmake
2 changes: 1 addition & 1 deletion externals/libmath
Submodule libmath updated 1 files
+1 −1 math/extent.hpp
2 changes: 1 addition & 1 deletion externals/libsemantic
2 changes: 1 addition & 1 deletion mapproxy/src/mapproxy/generator/geodata-semantic-tiled.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ class SemanticJob : public WorkRequest {
static const semantic::GeoPackage& openDataset(const std::string &path) {
auto fcache(cache_.find(path));
if (fcache != cache_.end()) { return fcache->second; }
return cache_.emplace(path, path).first->second;
return cache_.emplace(path, fs::path(path)).first->second;
}

MemoryBlock *rawTile_;
Expand Down

0 comments on commit 9fd7bfc

Please sign in to comment.