Skip to content

Commit 88170b3

Browse files
committed
C++ std dropdown: add c++98/c++11/c++14 options
1 parent 013422d commit 88170b3

2 files changed

Lines changed: 1 addition & 1 deletion

File tree

mode/CppMode.jar

38 Bytes
Binary file not shown.

src/java/CppEditor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public void dispose() {
5252
private static final String BUG_REPORT_URL =
5353
"https://github.com/processing-cpp/processing.cpp/issues";
5454

55-
private static final String[] CPP_STDS = {"c++17", "c++20", "c++23", "c++2c"};
55+
private static final String[] CPP_STDS = {"c++98", "c++11", "c++14", "c++17", "c++20", "c++23", "c++2c"};
5656
private static final String PREF_KEY = "cppmode.std";
5757
private JComboBox<String> stdCombo;
5858

0 commit comments

Comments
 (0)