]> git.treefish.org Git - phys/latlib.git/commitdiff
Fixed unhashed fileid creation.
authorAlexander Schmidt <alex@treefish.org>
Sun, 16 Mar 2014 20:58:13 +0000 (21:58 +0100)
committerAlexander Schmidt <alex@treefish.org>
Sun, 16 Mar 2014 20:58:13 +0000 (21:58 +0100)
configcache.cpp

index 491256c1aeaa47185f0e430e37151750c29aa465..59472e9c31856ca4c297945087d93b5502bdd798 100644 (file)
@@ -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();
 }