diff options
| author | Erich Keane <erich.keane@intel.com> | 2017-05-25 20:29:17 +0000 |
|---|---|---|
| committer | Erich Keane <erich.keane@intel.com> | 2017-05-25 20:29:17 +0000 |
| commit | a37711b1e2bde8c8c8bd4a8d91eeed1807491294 (patch) | |
| tree | 9062db015367b33289d56adc70daac66ae47e198 | |
| parent | 581a6c5d5687003feb40d331b5b32c8f2dccff90 (diff) | |
| download | bcm5719-llvm-a37711b1e2bde8c8c8bd4a8d91eeed1807491294.tar.gz bcm5719-llvm-a37711b1e2bde8c8c8bd4a8d91eeed1807491294.zip | |
Earlier revert introduced an extra space, remove it.
llvm-svn: 303909
| -rw-r--r-- | clang-tools-extra/test/clang-tidy/readability-implicit-bool-cast.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/test/clang-tidy/readability-implicit-bool-cast.cpp b/clang-tools-extra/test/clang-tidy/readability-implicit-bool-cast.cpp index 828418712f1..9e4aac7eb87 100644 --- a/clang-tools-extra/test/clang-tidy/readability-implicit-bool-cast.cpp +++ b/clang-tools-extra/test/clang-tidy/readability-implicit-bool-cast.cpp @@ -264,7 +264,7 @@ void implicitCastInNegationExpressions() { // CHECK-FIXES: bool boolComingFromNegatedChar = (character == 0); int* pointer = nullptr; - bool boolComingFromNegatedPointer = not pointer; + bool boolComingFromNegatedPointer = not pointer; // CHECK-MESSAGES: :[[@LINE-1]]:43: warning: implicit cast 'int *' -> bool // CHECK-FIXES: bool boolComingFromNegatedPointer = pointer == nullptr; } |

