├── .clang-format ├── .editorconfig ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── cpp_feature_tester.cpp └── readme.md /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/cpp_feature_flags/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/cpp_feature_flags/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/cpp_feature_flags/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/cpp_feature_flags/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/cpp_feature_flags/HEAD/LICENSE -------------------------------------------------------------------------------- /cpp_feature_tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/cpp_feature_flags/HEAD/cpp_feature_tester.cpp -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beached/cpp_feature_flags/HEAD/readme.md --------------------------------------------------------------------------------