Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed MSVC2017 builds (#8594) #8595

Merged
merged 1 commit into from
Oct 22, 2023
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions frmts/gtiff/geotiff.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
#include "tiffio.h"
#include "tif_jxl.h"
#include "xtiffio.h"
#include <cctype>

// Needed to expose WEBP_LOSSLESS option
#ifdef WEBP_SUPPORT
Expand Down
1 change: 1 addition & 0 deletions frmts/hdf4/hdf4dataset.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@

#include "hdf4compat.h"
#include "hdf4dataset.h"
#include <cctype>

extern const char *const pszGDALSignature;

Expand Down
1 change: 1 addition & 0 deletions frmts/hdf5/hdf5dataset.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
#include <stdio.h>
#include <string.h>
#include <string>
#include <cctype>

#include "cpl_conv.h"
#include "cpl_error.h"
Expand Down
1 change: 1 addition & 0 deletions ogr/ogrsf_frmts/gpkg/ogr_geopackage.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
#include <vector>
#include <set>
#include <thread>
#include <cctype>

#define UNKNOWN_SRID -2
#define DEFAULT_SRID 0
Expand Down