3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-05-17 23:49:29 +00:00

Update documentation and few more defines

This commit is contained in:
Miodrag Milanovic 2026-05-13 11:24:45 +02:00
parent 25459bd8b9
commit 1ef6311e5b
6 changed files with 7 additions and 7 deletions

View file

@ -120,10 +120,10 @@
# define YS_MAYBE_UNUSED
#endif
#if __cplusplus >= 201703L
#if __cplusplus >= 202002L
# define YS_FALLTHROUGH [[fallthrough]];
#else
# error "C++17 or later compatible compiler is required"
# error "C++20 or later compatible compiler is required"
#endif
#if defined(__has_cpp_attribute) && __has_cpp_attribute(gnu::cold)