This commit is contained in:
fincs 2015-09-05 11:42:22 +02:00
parent 7ae2c49768
commit e462d199da
2 changed files with 2 additions and 1 deletions

View File

@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script. # Process this file with autoconf to produce a configure script.
AC_PREREQ(2.61) AC_PREREQ(2.61)
AC_INIT([picasso],[2.0.0],[fincs.alt1@gmail.com]) AC_INIT([picasso],[2.1.0],[fincs.alt1@gmail.com])
AC_CONFIG_SRCDIR([source/picasso_frontend.cpp]) AC_CONFIG_SRCDIR([source/picasso_frontend.cpp])
AM_INIT_AUTOMAKE([1.10]) AM_INIT_AUTOMAKE([1.10])

View File

@ -37,6 +37,7 @@ public:
int pos = end - size; int pos = end - size;
if (pos < start) return -1; if (pos < start) return -1;
bound = pos < bound ? pos : bound; bound = pos < bound ? pos : bound;
end = pos;
return pos; return pos;
} }
}; };