Revert "enable skipws"

This reverts commit 9c851f0d1b.
This commit is contained in:
aleks-f
2012-12-20 20:04:46 -06:00
parent 9c851f0d1b
commit a4e781f487
2 changed files with 4 additions and 0 deletions

View File

@@ -171,7 +171,9 @@ Base32DecoderBuf* Base32DecoderIOS::rdbuf()
Base32Decoder::Base32Decoder(std::istream& istr): Base32DecoderIOS(istr), std::istream(&_buf)
{
#ifdef POCO_OS_FAMILY_WINDOWS
unsetf(std::ios_base::skipws);
#endif
}

View File

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