firewave added a comment.

Getting this false positive:

  #include <string>
  
  extern std::string str()
  {
        std::string ret;
        return ret.empty() ? ret : ret.substr(1);
  }



  input.cpp:6:23: warning: Parameter 'ret' is copied on last use, consider 
moving it instead. [performance-unnecessary-copy-on-last-use]
          return ret.empty() ? ret : ret.substr(1);
                               ^
                               std::move( )


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D137205/new/

https://reviews.llvm.org/D137205

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to