Skip to content

Commit

Permalink
Merge pull request #702 from imbs-hl/fix_errormsg
Browse files Browse the repository at this point in the history
C++14 not C++11 in error message
  • Loading branch information
mnwright authored Nov 8, 2023
2 parents 9722742 + 18a193c commit f79aa53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AAA_check_cpp11.cpp → src/AAA_check_cpp14.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#ifndef WIN_R_BUILD
#if __cplusplus < 201402L
#error Error: ranger requires C++14. Possible fixes: 1) Update R, 2) Set "CXX = g++ -std=gnu++11" or similar in local Makevars, 3) update C++ compiler. See https://github.com/imbs-hl/ranger/wiki/FAQ.
#error Error: ranger requires C++14. Possible fixes: 1) Update R, 2) Set "CXX = g++ -std=gnu++14" or similar in local Makevars, 3) update C++ compiler. See https://github.com/imbs-hl/ranger/wiki/FAQ.
#endif
#endif

0 comments on commit f79aa53

Please sign in to comment.