Removed unused Data::dump

This commit is contained in:
Daniel Marjamäki 2019-09-19 09:16:18 +02:00
parent 8207fb7b14
commit 745c91106e
1 changed files with 0 additions and 13 deletions

View File

@ -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();
}
};
}