Menu

#51 fast_string_concatenator itertor error

1.9
open
nobody
None
5
2011-09-19
2011-09-19
No

Line 310 of fast_string_concatenator.hpp (in version 1_9_108) contains;

STLSOFT_ASSERT(&s[1] == s + 1);

but this must eb

STLSOFT_ASSERT(&s[1] == &*(s + 1));

to compiler when s is not a char*.

-Thorsten

Discussion


Log in to post a comment.