mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 18:45:10 +01:00
- cleanup config macros inconsistencies
- convert spaces to tabs
This commit is contained in:
parent
a264582df1
commit
b7957f8cd0
@ -71,7 +71,7 @@
|
||||
// Define to desired default thread stack size
|
||||
// Zero means OS default
|
||||
#ifndef POCO_THREAD_STACK_SIZE
|
||||
#define POCO_THREAD_STACK_SIZE 0
|
||||
#define POCO_THREAD_STACK_SIZE 0
|
||||
#endif
|
||||
|
||||
|
||||
|
@ -125,6 +125,20 @@
|
||||
#endif
|
||||
|
||||
|
||||
//
|
||||
// Cleanup inconsistencies
|
||||
//
|
||||
#ifdef POCO_OS_FAMILY_WINDOWS
|
||||
#if defined(POCO_WIN32_UTF8) && defined(POCO_NO_WSTRING)
|
||||
#error POCO_WIN32_UTF8 and POCO_NO_WSTRING are mutually exclusive.
|
||||
#endif
|
||||
#else
|
||||
#ifdef POCO_WIN32_UTF8
|
||||
#undef POCO_WIN32_UTF8
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
||||
//
|
||||
// POCO_JOIN
|
||||
//
|
||||
|
@ -57,28 +57,28 @@ namespace Poco {
|
||||
|
||||
std::string NumberFormatter::format(bool value, BoolFormat format)
|
||||
{
|
||||
switch(format)
|
||||
{
|
||||
default:
|
||||
case FMT_TRUE_FALSE:
|
||||
if (value == true)
|
||||
return "true";
|
||||
return "false";
|
||||
case FMT_YES_NO:
|
||||
if (value == true)
|
||||
return "yes";
|
||||
return "no";
|
||||
case FMT_ON_OFF:
|
||||
if (value == true)
|
||||
return "on";
|
||||
return "off";
|
||||
}
|
||||
switch(format)
|
||||
{
|
||||
default:
|
||||
case FMT_TRUE_FALSE:
|
||||
if (value == true)
|
||||
return "true";
|
||||
return "false";
|
||||
case FMT_YES_NO:
|
||||
if (value == true)
|
||||
return "yes";
|
||||
return "no";
|
||||
case FMT_ON_OFF:
|
||||
if (value == true)
|
||||
return "on";
|
||||
return "off";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void NumberFormatter::append(std::string& str, int value)
|
||||
{
|
||||
char buffer[64];
|
||||
char buffer[64];
|
||||
std::sprintf(buffer, "%d", value);
|
||||
str.append(buffer);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user