summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorErich Keane <erich.keane@intel.com>2017-05-25 20:29:17 +0000
committerErich Keane <erich.keane@intel.com>2017-05-25 20:29:17 +0000
commita37711b1e2bde8c8c8bd4a8d91eeed1807491294 (patch)
tree9062db015367b33289d56adc70daac66ae47e198
parent581a6c5d5687003feb40d331b5b32c8f2dccff90 (diff)
downloadbcm5719-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.cpp2
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;
}
OpenPOWER on IntegriCloud