mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-27 11:06:50 +01:00
updated CHANGELOG
This commit is contained in:
@@ -1,5 +1,9 @@
|
|||||||
This is the changelog file for the POCO C++ Libraries.
|
This is the changelog file for the POCO C++ Libraries.
|
||||||
|
|
||||||
|
Release 1.5.2 (2013-03-??)
|
||||||
|
==========================
|
||||||
|
- fixed GH #57: poco-1.5.1: Doesn't compile for Android
|
||||||
|
|
||||||
Release 1.5.1 (2013-01-11)
|
Release 1.5.1 (2013-01-11)
|
||||||
==========================
|
==========================
|
||||||
- using double-conversion library for floating-point numeric/string conversions
|
- using double-conversion library for floating-point numeric/string conversions
|
||||||
|
|||||||
@@ -70,18 +70,18 @@ protected:
|
|||||||
FPEnvironmentImpl(const FPEnvironmentImpl& env);
|
FPEnvironmentImpl(const FPEnvironmentImpl& env);
|
||||||
~FPEnvironmentImpl();
|
~FPEnvironmentImpl();
|
||||||
FPEnvironmentImpl& operator = (const FPEnvironmentImpl& env);
|
FPEnvironmentImpl& operator = (const FPEnvironmentImpl& env);
|
||||||
void keepCurrentImpl();
|
void keepCurrentImpl();
|
||||||
static void clearFlagsImpl();
|
static void clearFlagsImpl();
|
||||||
static bool isFlagImpl(FlagImpl flag);
|
static bool isFlagImpl(FlagImpl flag);
|
||||||
static void setRoundingModeImpl(RoundingModeImpl mode);
|
static void setRoundingModeImpl(RoundingModeImpl mode);
|
||||||
static RoundingModeImpl getRoundingModeImpl();
|
static RoundingModeImpl getRoundingModeImpl();
|
||||||
static bool isInfiniteImpl(float value);
|
static bool isInfiniteImpl(float value);
|
||||||
static bool isInfiniteImpl(double value);
|
static bool isInfiniteImpl(double value);
|
||||||
static bool isInfiniteImpl(long double value);
|
static bool isInfiniteImpl(long double value);
|
||||||
static bool isNaNImpl(float value);
|
static bool isNaNImpl(float value);
|
||||||
static bool isNaNImpl(double value);
|
static bool isNaNImpl(double value);
|
||||||
static bool isNaNImpl(long double value);
|
static bool isNaNImpl(long double value);
|
||||||
static float copySignImpl(float target, float source);
|
static float copySignImpl(float target, float source);
|
||||||
static double copySignImpl(double target, double source);
|
static double copySignImpl(double target, double source);
|
||||||
static long double copySignImpl(long double target, long double source);
|
static long double copySignImpl(long double target, long double source);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user