void foo()
{
string sstr( "asdfasfsafd" );
string dstr;
StringSink sink( dstr );
Base64Encoder encoder( &sink );
StringSource src( sstr, true, &encoder );
}causes vc++ to trap on some break point I never set. Why doesn't this work when I try to step out of the function?
