aboutsummaryrefslogtreecommitdiff
path: root/src/utils.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils.cc')
-rw-r--r--src/utils.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils.cc b/src/utils.cc
index 832b701..256cad8 100644
--- a/src/utils.cc
+++ b/src/utils.cc
@@ -195,7 +195,7 @@ std::vector<std::string> lexer(const std::string& term) {
return resultBuffer;
}
-double doubleToString(const std::string& str) {
+double stringToDouble(const std::string& str) {
double value;
std::istringstream convertStream(str);
convertStream >> value;