fixed: the parser didn't use characters for changing the base (# and &)

those characters were skipped
       (this bug was introduced in 0.9.0)



git-svn-id: svn://ttmath.org/publicrep/ttmath/trunk@255 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
Tomasz Sowa 2009-12-02 11:38:17 +00:00
parent 125c051ea1
commit 321953e833
3 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
Version 0.9.1 (2009.12.02):
* fixed: the parser didn't use characters for changing the base (# and &)
those characters were skipped
(this bug was introduced in 0.9.0)
Version 0.9.0 (2009.11.25):
* added: support for wide characters (wchar_t, std::wstring)
* added: Big::IsInteger()

View File

@ -1746,7 +1746,7 @@ const char * new_stack_pointer;
bool value_read;
Conv conv;
conv.base = base;
conv.base = reading_base;
conv.comma = comma;
conv.comma2 = comma2;
conv.group = group;

View File

@ -64,8 +64,8 @@
*/
#define TTMATH_MAJOR_VER 0
#define TTMATH_MINOR_VER 9
#define TTMATH_REVISION_VER 0
#define TTMATH_PRERELEASE_VER 0
#define TTMATH_REVISION_VER 1
#define TTMATH_PRERELEASE_VER 1
/*!