From 745c91106e55afc06244c3e615748614e2b79e94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Thu, 19 Sep 2019 09:16:18 +0200 Subject: [PATCH] Removed unused Data::dump --- lib/exprengine.cpp | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/lib/exprengine.cpp b/lib/exprengine.cpp index f161f5d78..d6ab846b9 100644 --- a/lib/exprengine.cpp +++ b/lib/exprengine.cpp @@ -114,19 +114,6 @@ namespace { memory[varId] = value; return value; } -#ifdef _MSC_VER -#define NOINLINE __declspec(noinline) -#else -#define NOINLINE __attribute__((noinline)) -#endif - - std::string NOINLINE dump() const { - std::ostringstream ret; - for (Memory::const_iterator mem = memory.cbegin(); mem != memory.cend(); ++mem) { - ret << mem->first << "=" << mem->second->name << " " << mem->second->getRange() << "\n"; - } - return ret.str(); - } }; }