From 54e01d06db7c04208a684e34cb82b0847a077261 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 29 Mar 2009 13:26:05 +0000 Subject: [PATCH] add missing space. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@67995 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/ADT/PointerIntPair.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/llvm/ADT/PointerIntPair.h b/include/llvm/ADT/PointerIntPair.h index 51a0c77fdca..19b71d43c92 100644 --- a/include/llvm/ADT/PointerIntPair.h +++ b/include/llvm/ADT/PointerIntPair.h @@ -30,10 +30,10 @@ struct DenseMapInfo; /// type. /// /// Note that PointerIntPair always puts the Int part in the highest bits -/// possible. For example, PointerIntPair will put the bit for +/// possible. For example, PointerIntPair will put the bit for /// the bool into bit #2, not bit #0, which allows the low two bits to be used /// for something else. For example, this allows: -/// PointerIntPair, 1, bool> +/// PointerIntPair, 1, bool> /// ... and the two bools will land in different bits. /// template