diff options
author | Peter Goldsborough <psag@fb.com> | 2018-08-30 16:22:24 -0700 |
---|---|---|
committer | Facebook Github Bot <facebook-github-bot@users.noreply.github.com> | 2018-08-30 16:25:42 -0700 |
commit | 7ddc6f84c46568d233da8d250d91bfb30d205c94 (patch) | |
tree | 18872bd9a2260fd7d784c4364b2122d671e13767 /.clang-tidy | |
parent | 302e9cb815cf9507ed72af8341a03056fc1efb90 (diff) | |
download | pytorch-7ddc6f84c46568d233da8d250d91bfb30d205c94.tar.gz pytorch-7ddc6f84c46568d233da8d250d91bfb30d205c94.tar.bz2 pytorch-7ddc6f84c46568d233da8d250d91bfb30d205c94.zip |
NULL -> nullptr (#11047)
Summary:
How did we get so many uses of `NULL` again?
ezyang
Pull Request resolved: https://github.com/pytorch/pytorch/pull/11047
Differential Revision: D9566799
Pulled By: goldsborough
fbshipit-source-id: 83469f352ac69aa65bdaf1a1a21f922d892e0db3
Diffstat (limited to '.clang-tidy')
-rw-r--r-- | .clang-tidy | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy index d5fc66c26d..3cb409f928 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -37,6 +37,7 @@ Checks: ' ,-performance-unnecessary-value-param ,-readability-braces-around-statements ,-readability-else-after-return + ,-readability-implicit-bool-conversion ,-readability-named-parameter ' WarningsAsErrors: '' |