Skip to content

Commit d199076

Browse files
authored
Add known limitations of modern C++ (#68)
1 parent 0fb1328 commit d199076

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,12 @@ Some handy commands:
2727

2828
## Known limitations
2929
AFAIK, C++98, C++11 and C++14 code doesn't produce false positives. If you encounter some, please create an issue.
30+
Several features of C++20 onwards are not implemented yet. A non-exhaustive list is provided here:
31+
* Spaceship operator `<=>`
32+
* `requires`
33+
* concepts
34+
* modules
35+
3036
There are a few corner cases where false positives are generated on a pure C code.
3137

3238
One such known case is while returning ```struct``` from a function (See Issue #8).

0 commit comments

Comments
 (0)