Commit 2f158677 authored by Alvarez, Gonzalo's avatar Alvarez, Gonzalo
Browse files

PsimagLite::atof bug fix

parent 9fcf7ca2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -82,7 +82,7 @@ int atof(String str)
		throw RuntimeError("atof received a non-digit\n");
	}

	return std::atoi(str.c_str());
	return std::atof(str.c_str());
}

const int PsiApp::libSizeOfSizeType_ = sizeof(SizeType);