diff --git a/source/common.h b/source/common.h index 45fa816..65b8133 100644 --- a/source/common.h +++ b/source/common.h @@ -21,6 +21,8 @@ #include #include +using namespace std::string_literals; + inline constexpr std::nullopt_t None{std::nullopt}; template diff --git a/source/quam/project.cc b/source/quam/project.cc index e9084c8..477379b 100644 --- a/source/quam/project.cc +++ b/source/quam/project.cc @@ -59,8 +59,6 @@ bool Project::seekHistory(std::ptrdiff_t newPos) { m_histPos = newPos; - qDebug() << "hist pos changed:" << m_histPos; - auto newPath = m_hist.at(newPos); if(auto node = m_model->findPath(newPath)) { if(auto dir = node->getDir()) {