From 8fc4456fb4c445a0682b19a908ea50deef93cb83 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Mon, 15 Jun 2015 16:03:15 +0300 Subject: [PATCH] Fix compilation error with MSVC 2013 after a7b82b5. --- lib/tokenlist.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tokenlist.cpp b/lib/tokenlist.cpp index deac18545..d61cc196c 100644 --- a/lib/tokenlist.cpp +++ b/lib/tokenlist.cpp @@ -132,7 +132,7 @@ void TokenList::addtoken(const std::string & str, const unsigned int lineno, con std::string str2; if (MathLib::isHex(str) || MathLib::isOct(str) || MathLib::isBin(str)) { std::ostringstream str2stream; - str2stream << MathLib::MathLib::toULongNumber(str); + str2stream << MathLib::toULongNumber(str); str2 = str2stream.str(); } else if (str.compare(0, 5, "_Bool") == 0) { str2 = "bool";