Skip to content
  1. Nov 18, 2016
  2. Nov 17, 2016
  3. Nov 16, 2016
  4. Nov 15, 2016
  5. Nov 10, 2016
  6. Nov 08, 2016
  7. Nov 07, 2016
  8. Nov 04, 2016
  9. Nov 03, 2016
  10. Nov 02, 2016
  11. Nov 01, 2016
  12. Oct 31, 2016
  13. Oct 24, 2016
    • Jason Henline's avatar
      [clang-tidy] Fix identifier naming in macro args. · 481e6aaa
      Jason Henline authored
      Summary:
      clang-tidy should fix identifier naming even when the identifier is
      referenced inside a macro expansion, provided that the identifier enters
      the macro expansion completely within a macro argument.
      
      For example, this will allow fixes to the naming of the identifier
      'global' when it is declared and used as follows:
      
        int global;
        #define USE_IN_MACRO(m) auto use_##m = m
        USE_IN_MACRO(global);
      
      Reviewers: alexfh
      
      Subscribers: jlebar, cfe-commits
      
      Differential Revision: https://reviews.llvm.org/D25450
      
      llvm-svn: 284992
      481e6aaa
  14. Oct 21, 2016
  15. Oct 20, 2016
    • Malcolm Parsons's avatar
      [clang-tidy] Add check 'readability-redundant-member-init' · 5c24a114
      Malcolm Parsons authored
      Summary: The check emits a warning if a member-initializer calls the member's default constructor with no arguments.
      
      Reviewers: sbenza, alexfh, aaron.ballman
      
      Subscribers: modocache, mgorny, Eugene.Zelenko, etienneb, Prazek, hokein, cfe-commits, beanz
      
      Differential Revision: https://reviews.llvm.org/D24339
      
      llvm-svn: 284742
      5c24a114
    • Malcolm Parsons's avatar
      [clang-tidy] Simplify modernize-use-default · c2da631c
      Malcolm Parsons authored
      Summary:
      clang-tidy now cleans up after replacements, so leave colon and comma
      removal to that.
      
      Reviewers: angelgarcia, alexfh, aaron.ballman, djasper, ioeric
      
      Subscribers: djasper, cfe-commits
      
      Differential Revision: https://reviews.llvm.org/D25769
      
      llvm-svn: 284735
      c2da631c
    • Haojian Wu's avatar
      [clang-tidy] Fix an assertion failure in cppcoreguidelines-pro-type-member-init. · 7c870a7e
      Haojian Wu authored
      Summary:
      The matcher for matching "class with default constructor" still match
      some classes without default constructor, which trigger an assert at
      Line 307. This patch makes the matcher more strict.
      
      Reviewers: aaron.ballman
      
      Subscribers: nemanjai, cfe-commits
      
      Differential Revision: https://reviews.llvm.org/D25747
      
      llvm-svn: 284727
      7c870a7e
    • Haojian Wu's avatar
      [Clang-tidy]: Fix modernize-avoid-bind erroneous scope resolution. · 157e46dd
      Haojian Wu authored
      Hello, i would like to suggest a fix for one of the checks in clang-tidy and i should hope this one is the correct mailing list.
      The check is modernize-avoid-bind.
      
      Consider the following:
      
        void bar(int x, int y);
      
        namespace N {
          void bar(int x, int y);
        }
      
        void foo(){
          auto Test = std::bind(N::bar,1,1);
        }
      
      clang-tidy’s modernize-avoid-bind check suggests writing:
      
        void foo(){
          auto Test =[] {return bar(1,1);};
        }
      
      instead of:
      
        void foo(){
          auto Test = [] {return N::bar(1,1);};
        }
      
      So clang-tidy has proposed an incorrect Fix.
      
      Patch by IdrissRio!
      
      Reviewers: alexfh, hokein, aaron.ballman
      
      Subscriber: cfe-commits
      llvm-svn: 284719
      157e46dd
  16. Oct 19, 2016
Loading