Skip to content

Commit

Permalink
pnm: disable C++11 check (fails for no real reason)
Browse files Browse the repository at this point in the history
  • Loading branch information
pthom committed May 21, 2024
1 parent 3f1fbd1 commit bff5217
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/hello_imgui/internal/pnm.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@
#error "pnm++ is a library for C++."
#endif

#if __cplusplus < 201103L
#error "pnm++ requires C++11 or later."
#endif
// Disabled because, for some reason, the C++11 check is failing although the main CMakelists.txt file specifies C++17
//#if __cplusplus < 201103L
//#error "pnm++ requires C++11 or later."
//#endif

#include <cctype>
#include <type_traits>
Expand Down

0 comments on commit bff5217

Please sign in to comment.