aaron.ballman accepted this revision. aaron.ballman added a comment. This revision is now accepted and ready to land.
Aside from one minor nit, LGTM ================ Comment at: clang-tidy/misc/NoexceptMoveConstructorCheck.cpp:23 // provide any benefit to other languages, despite being benign. - if (!getLangOpts().CPlusPlus11) + if ((!getLangOpts().CPlusPlus11) || (!getLangOpts().CXXExceptions)) return; ---------------- You can remove the spurious parens. Repository: rL LLVM https://reviews.llvm.org/D34002 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits