aboutsummaryrefslogtreecommitdiff
path: root/src/utils.h
diff options
context:
space:
mode:
authorAdrian Kummerlaender2014-09-27 18:35:16 +0200
committerAdrian Kummerlaender2014-09-27 18:35:16 +0200
commit5a1ee058e1c0f4e6f2a37f0c302671d73b66b0b7 (patch)
treeffe4063af7bd6689a9efa3569f33d2b785c71410 /src/utils.h
parent1479b2ab1ae2e5a82ab6ac79663939ae651000fd (diff)
downloadSimpleParser-5a1ee058e1c0f4e6f2a37f0c302671d73b66b0b7.tar
SimpleParser-5a1ee058e1c0f4e6f2a37f0c302671d73b66b0b7.tar.gz
SimpleParser-5a1ee058e1c0f4e6f2a37f0c302671d73b66b0b7.tar.bz2
SimpleParser-5a1ee058e1c0f4e6f2a37f0c302671d73b66b0b7.tar.lz
SimpleParser-5a1ee058e1c0f4e6f2a37f0c302671d73b66b0b7.tar.xz
SimpleParser-5a1ee058e1c0f4e6f2a37f0c302671d73b66b0b7.tar.zst
SimpleParser-5a1ee058e1c0f4e6f2a37f0c302671d73b66b0b7.zip
Removed line breaks from `dot` export and fixed naming error
* "doubleToString" converts a string to double, i.e. it should be named "stringToDouble"…
Diffstat (limited to 'src/utils.h')
-rw-r--r--src/utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils.h b/src/utils.h
index 63ccf55..5c6e80e 100644
--- a/src/utils.h
+++ b/src/utils.h
@@ -33,7 +33,7 @@ TokenType determineToken(const std::string&);
PrecedenceLevel precedence(TokenType);
std::vector<std::string> lexer(const std::string&);
-double doubleToString(const std::string&);
+double stringToDouble(const std::string&);
}