Fixes the following warning from Clang:<div><br></div><div><div>/home/sean/pg/others/llvm/source/tools/clang/lib/Rewrite/RewriteMacros.cpp:170:40: warning: adding 'bool' to a string does not append to the string [-Wstring-plus-int]</div>
<div> RB.InsertTextAfter(RawOffs, " /*"+HasSpace);</div><div> ~~~~~^~~~~~~~~</div><div>/home/sean/pg/others/llvm/source/tools/clang/lib/Rewrite/RewriteMacros.cpp:170:40: note: use array indexing to silence this warning</div>
<div> RB.InsertTextAfter(RawOffs, " /*"+HasSpace);</div><div> ^</div><div> & [ ]</div><div>1 warning generated.</div></div>
<div><br></div><div>--Sean Silva</div>