├── .github ├── ISSUE_TEMPLATE │ ├── incorrect-support-information.md │ └── missing-feature---proposal.md └── workflows │ └── verify-data.yml ├── .yamllint ├── LICENSE.md ├── README.md ├── assets ├── cover_dark.webp ├── cover_light.webp ├── feature_example.webp ├── logo_dark.png └── logo_light.png ├── content ├── p0330_literal_suffix_size_t.md ├── p1967_embed.md ├── p2169_placeholder_with_no_name.md ├── p2300_execution.md ├── p2546_debugging.md ├── p2573.md ├── p2589_static_subscript_operator.md ├── p2741_static_assert_msgs.md ├── p2809_trivial_infinite_loops_ub.md ├── p2900.md ├── p2988_optional_ref.md ├── p2996_reflection.md ├── p3471_hardening.md ├── p3533.md └── p3697_minor_additions_to_hardening.md ├── features_cpp17.yaml ├── features_cpp20.yaml ├── features_cpp23.yaml ├── features_cpp26.yaml └── toolchains.yaml /.github/ISSUE_TEMPLATE/incorrect-support-information.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdervis/cppstat/HEAD/.github/ISSUE_TEMPLATE/incorrect-support-information.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/missing-feature---proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdervis/cppstat/HEAD/.github/ISSUE_TEMPLATE/missing-feature---proposal.md -------------------------------------------------------------------------------- /.github/workflows/verify-data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdervis/cppstat/HEAD/.github/workflows/verify-data.yml -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdervis/cppstat/HEAD/.yamllint -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdervis/cppstat/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdervis/cppstat/HEAD/README.md -------------------------------------------------------------------------------- /assets/cover_dark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdervis/cppstat/HEAD/assets/cover_dark.webp -------------------------------------------------------------------------------- /assets/cover_light.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdervis/cppstat/HEAD/assets/cover_light.webp -------------------------------------------------------------------------------- /assets/feature_example.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdervis/cppstat/HEAD/assets/feature_example.webp -------------------------------------------------------------------------------- /assets/logo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdervis/cppstat/HEAD/assets/logo_dark.png -------------------------------------------------------------------------------- /assets/logo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdervis/cppstat/HEAD/assets/logo_light.png -------------------------------------------------------------------------------- /content/p0330_literal_suffix_size_t.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdervis/cppstat/HEAD/content/p0330_literal_suffix_size_t.md -------------------------------------------------------------------------------- /content/p1967_embed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdervis/cppstat/HEAD/content/p1967_embed.md -------------------------------------------------------------------------------- /content/p2169_placeholder_with_no_name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdervis/cppstat/HEAD/content/p2169_placeholder_with_no_name.md -------------------------------------------------------------------------------- /content/p2300_execution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdervis/cppstat/HEAD/content/p2300_execution.md -------------------------------------------------------------------------------- /content/p2546_debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdervis/cppstat/HEAD/content/p2546_debugging.md -------------------------------------------------------------------------------- /content/p2573.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdervis/cppstat/HEAD/content/p2573.md -------------------------------------------------------------------------------- /content/p2589_static_subscript_operator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdervis/cppstat/HEAD/content/p2589_static_subscript_operator.md -------------------------------------------------------------------------------- /content/p2741_static_assert_msgs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdervis/cppstat/HEAD/content/p2741_static_assert_msgs.md -------------------------------------------------------------------------------- /content/p2809_trivial_infinite_loops_ub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdervis/cppstat/HEAD/content/p2809_trivial_infinite_loops_ub.md -------------------------------------------------------------------------------- /content/p2900.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdervis/cppstat/HEAD/content/p2900.md -------------------------------------------------------------------------------- /content/p2988_optional_ref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdervis/cppstat/HEAD/content/p2988_optional_ref.md -------------------------------------------------------------------------------- /content/p2996_reflection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdervis/cppstat/HEAD/content/p2996_reflection.md -------------------------------------------------------------------------------- /content/p3471_hardening.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdervis/cppstat/HEAD/content/p3471_hardening.md -------------------------------------------------------------------------------- /content/p3533.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdervis/cppstat/HEAD/content/p3533.md -------------------------------------------------------------------------------- /content/p3697_minor_additions_to_hardening.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdervis/cppstat/HEAD/content/p3697_minor_additions_to_hardening.md -------------------------------------------------------------------------------- /features_cpp17.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdervis/cppstat/HEAD/features_cpp17.yaml -------------------------------------------------------------------------------- /features_cpp20.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdervis/cppstat/HEAD/features_cpp20.yaml -------------------------------------------------------------------------------- /features_cpp23.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdervis/cppstat/HEAD/features_cpp23.yaml -------------------------------------------------------------------------------- /features_cpp26.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdervis/cppstat/HEAD/features_cpp26.yaml -------------------------------------------------------------------------------- /toolchains.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdervis/cppstat/HEAD/toolchains.yaml --------------------------------------------------------------------------------