We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05ce24e commit 4d0f2b7Copy full SHA for 4d0f2b7
gcc/rust/rust-lang.cc
@@ -51,10 +51,10 @@
51
// FIXME: test saving intellisense
52
#include "options.h"
53
54
-// version check to stop compiling if c++ isn't c++11 or higher
55
-#if __cplusplus < 201103
+// version check to stop compiling if c++ isn't c++14 or higher
+#if __cplusplus < 201402
56
#error \
57
- "GCC Rust frontend requires C++11 or higher. You can compile the g++ frontend first and then compile the Rust frontend using that."
+ "GCC Rust frontend requires C++14 or higher. You can compile the g++ frontend first and then compile the Rust frontend using that."
58
#endif
59
// TODO: is this best way to do it? Is it allowed? (should be)
60
0 commit comments