Skip to content

Commit ff286d7

Browse files
committed
[llvm][NFC] Stop plenking in an assertion message
Remove whitespace before an exclamation mark.
1 parent 381e805 commit ff286d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/include/llvm/ADT/PointerUnion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ template <typename... PTs> struct CastInfoPointerUnionImpl {
231231
}
232232

233233
template <typename To> static To doCast(From &F) {
234-
assert(isPossible<To>(F) && "cast to an incompatible type !");
234+
assert(isPossible<To>(F) && "cast to an incompatible type!");
235235
return PointerLikeTypeTraits<To>::getFromVoidPointer(F.Val.getPointer());
236236
}
237237
};

0 commit comments

Comments
 (0)