mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-23 08:31:43 +02:00
- [SF 2513643] Seg fault in Poco::UTF8::toLower on 64-bit Linux
- removed support for 5- and 6-byte sequences - fixed error counting in StreamConverterBuf::readFromDevice() - added std::dec to poco_stdout_dbg and poco_stderr_dbg macros
This commit is contained in:
@@ -129,7 +129,7 @@ protected:
|
||||
|
||||
#if defined(_DEBUG)
|
||||
# define poco_stdout_dbg(outstr) \
|
||||
std::cout << __FILE__ << '(' << __LINE__ << "):" << outstr << std::endl;
|
||||
std::cout << __FILE__ << '(' << std::dec << __LINE__ << "):" << outstr << std::endl;
|
||||
#else
|
||||
# define poco_stdout_dbg(outstr)
|
||||
#endif
|
||||
@@ -137,7 +137,7 @@ protected:
|
||||
|
||||
#if defined(_DEBUG)
|
||||
# define poco_stderr_dbg(outstr) \
|
||||
std::cerr << __FILE__ << '(' << __LINE__ << "):" << outstr << std::endl;
|
||||
std::cerr << __FILE__ << '(' << std::dec << __LINE__ << "):" << outstr << std::endl;
|
||||
#else
|
||||
# define poco_stderr_dbg(outstr)
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user