Closed KazDragon closed 3 years ago
CMakeLists.txt, line 112 at r1 (raw file):
# For producing automatically-generated documentation, we use Doxygen. find_package(Doxygen)
This appears to be a rebase error.
CMakeSettings.json, line 6 at r1 (raw file):
"name": "x64-Debug", "generator": "Ninja", "configurationType": "Debug",
This file should be excluded from git.
test/virtual_key_test.cpp, line 92 at r1 (raw file):
static virtual_key_test_data const virtual_key_strings[] = { // A virtual key should just output the wrapper and the \x00 sequence.
Comment has drifted out of truth.
Previously, whitespace characters such as newline and tab characters printed out literal newline and tab characters. Now they print out encoded forms (e.g. '\n' and '\t'). This allows for better handling during tests.
This change is