clang-tidy failed to replace all invokes after automaticaly rename a function name

0

after running clang-tidy to fix name convension errors, I found some of the name was not replaced, some of them replace correctly, for example, a function name change from error() to Error(), but where the method was invoked was not changed accordingly for example:

class A{
  void help(){}
  void Main(){
    help();
  }
};

ddwolf

Posted 2019-04-03T05:48:45.337

Reputation: 1

No answers