Base64Decoder drops 0x0d characters on windows

SF #605 Base64Decoder drops 0x0d characters on windows
This commit is contained in:
aleks-f
2012-12-19 21:48:26 -06:00
parent 6fa1270163
commit 79549f85dd
7 changed files with 47 additions and 5 deletions

View File

@@ -211,6 +211,11 @@
#endif
#if !defined(POCO_ARCH)
#error "Unknown or Unsupported Hardware Architecture."
#endif
#if defined(_MSC_VER)
#define POCO_COMPILER_MSVC
#elif defined(__clang__)
@@ -239,11 +244,8 @@
#define POCO_COMPILER_IBM_XLC // IBM XL C++
#elif defined (__IBMCPP__) && defined(__COMPILER_VER__)
#define POCO_COMPILER_IBM_XLC_ZOS // IBM z/OS C++
#endif
#if !defined(POCO_ARCH)
#error "Unknown Hardware Architecture."
#else
#error "Unknown or Unsupported Compiler."
#endif