Skip to content

Commit

Permalink
Add known limitations of modern C++ (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
kunaltyagi authored Oct 4, 2024
1 parent 0fb1328 commit d199076
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ Some handy commands:

## Known limitations
AFAIK, C++98, C++11 and C++14 code doesn't produce false positives. If you encounter some, please create an issue.
Several features of C++20 onwards are not implemented yet. A non-exhaustive list is provided here:
* Spaceship operator `<=>`
* `requires`
* concepts
* modules

There are a few corner cases where false positives are generated on a pure C code.

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

0 comments on commit d199076

Please sign in to comment.