Skip to content
Snippets Groups Projects
Commit 702a5a86 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

This is release 2.1.4b.

parent 4c315e46
No related branches found
No related tags found
No related merge requests found
Release 2.1.4b of 21dec11:
- bugfixes:
- improved handling of r and z ('or', 'oz', 'ms*', 'mfj')
Release 2.1.4a of 9nov11:
- new functionality:
......
......@@ -13,8 +13,8 @@
m4_ifndef([AC_AUTOCONF_VERSION],
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.68],,
[m4_warning([this file was generated for autoconf 2.68.
m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.67],,
[m4_warning([this file was generated for autoconf 2.67.
You have another version of autoconf. It may work, but is not guaranteed to.
If you have problems, you may need to regenerate the build system entirely.
To do so, use the procedure documented by the package, typically `autoreconf'.])])
......
This diff is collapsed.
......@@ -9,7 +9,7 @@
## Generic initialization ##
###############################################################################
AC_INIT([frida],[post-2.1.4a],[j.wuttke@fz-juelich.de])
AC_INIT([frida],[post-2.1.4b],[j.wuttke@fz-juelich.de])
# project name must be "frida"; this determines the installation directories
#AC_PREREQ(2.65) # downgraded to 2.61
......
......@@ -115,7 +115,7 @@ void NOlm::OlfExchange()
FSelOld = FSel;
FSel = CList();
vector<POlo> aux;
for (uint i = FSelOld.size()-1; i!=(uint)-1; --i) {
for (uint i=FSelOld.size()-1; i!=(uint)-1; --i) {
aux.push_back( MOM[FSelOld.V[i]] );
MOM.erase( MOM.begin()+FSelOld.V[i] );
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment