updated CHANGELOG

This commit is contained in:
aleks-f
2013-01-12 11:33:56 -06:00
parent a867fb884d
commit 5d6afa983e
2 changed files with 9 additions and 5 deletions

View File

@@ -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

View File

@@ -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);