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 e0c69b3 commit cd05610Copy full SHA for cd05610
common/console.cpp
@@ -36,6 +36,7 @@
36
37
namespace console {
38
39
+#if defined(_WIN32)
40
namespace {
41
// Use private-use unicode values to represent special keys that are not reported
42
// as characters (e.g. arrows on Windows). These values should never clash with
@@ -45,6 +46,7 @@ namespace console {
45
46
static constexpr char32_t KEY_ARROW_UP = 0xE002;
47
static constexpr char32_t KEY_ARROW_DOWN = 0xE003;
48
}
49
+#endif
50
51
//
52
// Console state
0 commit comments