Skip to content

Commit

Permalink
Merge branch 'develop' into feature/MAGP-1137-add-webp
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanSiemen committed Dec 18, 2023
2 parents b1327a9 + 7547561 commit e369bca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ set(INSTALL_INCLUDE_DIR include/magics CACHE PATH "Magics installation directory

include(ecbuild_system NO_POLICY_SCOPE)

set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_C_STANDARD 99)

Expand Down
2 changes: 1 addition & 1 deletion src/common/Polyline.cc
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ struct SouthCleaner {

bool operator()(PaperPoint& point) { return point.y_ < -89; }
};
struct LonFinder : std::unary_function<PaperPoint, bool> {
struct LonFinder {
LonFinder() {}

bool operator()(PaperPoint& point) const { return (same(point.x_, -180.)); }
Expand Down

0 comments on commit e369bca

Please sign in to comment.