Revert "Base64Decoder drops 0x0d characters on windows"

This reverts commit 79549f85dd.
This commit is contained in:
aleks-f
2012-12-20 20:05:10 -06:00
parent a4e781f487
commit 9a67596f00
7 changed files with 5 additions and 47 deletions

View File

@@ -147,9 +147,6 @@ Base64DecoderBuf* Base64DecoderIOS::rdbuf()
Base64Decoder::Base64Decoder(std::istream& istr): Base64DecoderIOS(istr), std::istream(&_buf)
{
#ifdef POCO_OS_FAMILY_WINDOWS
unsetf(std::ios_base::skipws);
#endif
}