Earlier revert introduced an extra space, remove it.
authorErich Keane <erich.keane@intel.com>
Thu, 25 May 2017 20:29:17 +0000 (20:29 +0000)
committerErich Keane <erich.keane@intel.com>
Thu, 25 May 2017 20:29:17 +0000 (20:29 +0000)
llvm-svn: 303909

clang-tools-extra/test/clang-tidy/readability-implicit-bool-cast.cpp

index 8284187..9e4aac7 100644 (file)
@@ -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;
 }