Skip to content
Snippets Groups Projects
Commit 26e3299c authored by Mikhail Svechnikov's avatar Mikhail Svechnikov
Browse files

rm debug msgs

parent 4776038c
No related branches found
No related tags found
No related merge requests found
...@@ -248,11 +248,9 @@ Scale Scale::plottableScale(std::string label) const ...@@ -248,11 +248,9 @@ Scale Scale::plottableScale(std::string label) const
ASSERT(!m_trafos.empty()); ASSERT(!m_trafos.empty());
trafo_map_t::const_iterator entry; trafo_map_t::const_iterator entry;
if (label.empty()) { if (label.empty()) {
std::cerr << "DEBUG A" << std::endl;
entry = m_trafos.cbegin(); entry = m_trafos.cbegin();
label = entry->first; label = entry->first;
} else { } else {
std::cerr << "DEBUG B" << std::endl;
entry = find(label, m_trafos); entry = find(label, m_trafos);
if (entry == m_trafos.cend()) if (entry == m_trafos.cend())
throw std::runtime_error("Scale::plottableScale called with unknown label '" + label throw std::runtime_error("Scale::plottableScale called with unknown label '" + label
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment