terryyin / lizard

A simple code complexity analyser without caring about the C/C++ header files or Java imports, supports most of the popular languages.
Other
1.85k stars 250 forks source link

Bug: C++11 ref qualified functions #143

Closed rakhimov closed 8 years ago

rakhimov commented 8 years ago

Lizard misses C++11 ref qualified member functions. These functions don't appear in the report or the result database.

struct A {
  void foo() & {};
  void foo() const & {};
  void foo() && {};
  void foo() const && {};
};