From: Alexander Schmidt Date: Sun, 16 Mar 2014 20:58:13 +0000 (+0100) Subject: Fixed unhashed fileid creation. X-Git-Url: http://git.treefish.org/~alex/phys/latlib.git/commitdiff_plain/493266210f4f7627378161978968e719372ef03e?hp=38ffdcb3843eec92d62b23d32a735107a49fb7d8 Fixed unhashed fileid creation. --- diff --git a/configcache.cpp b/configcache.cpp index 491256c..59472e9 100644 --- a/configcache.cpp +++ b/configcache.cpp @@ -71,7 +71,7 @@ string configcache::getFileId(int actnequi, const bool& superextended, const boo if( superextended ) fileid << "_" << hash( paraString() ); else - fileid << "_" << paraString(); + fileid << paraString(); return fileid.str(); }