[PATCH] D16259: Add clang-tidy readability-redundant-control-flow check

Eugene Zelenko via cfe-commits cfe-commits at lists.llvm.org
Mon Jan 25 13:42:02 PST 2016


Eugene.Zelenko added a comment.

Just encountered next situation in my work code base:

  void Function() {
  ...
  
    if (Condition) {
    }
    else
      return;
  }


http://reviews.llvm.org/D16259





More information about the cfe-commits mailing list