diff --git a/duchain/rustducontext.cpp b/duchain/rustducontext.cpp index fb94d6f..8f0d563 100644 --- a/duchain/rustducontext.cpp +++ b/duchain/rustducontext.cpp @@ -1,23 +1,31 @@ #include "rustducontext.h" #include namespace Rust { REGISTER_DUCHAIN_ITEM_WITH_DATA(RustTopDUContext, TopDUContextData); REGISTER_DUCHAIN_ITEM_WITH_DATA(RustNormalDUContext, DUContextData); template <> -QWidget *RustNormalDUContext::createNavigationWidget(KDevelop::Declaration *decl, KDevelop::TopDUContext *topContext, const QString &htmlPrefix, const QString &htmlSuffix, KDevelop::AbstractNavigationWidget::DisplayHints hints) const +QWidget *RustNormalDUContext::createNavigationWidget(KDevelop::Declaration *decl, + KDevelop::TopDUContext *topContext, + const QString &htmlPrefix, + const QString &htmlSuffix, + KDevelop::AbstractNavigationWidget::DisplayHints hints) const { return nullptr; } template <> -QWidget *RustTopDUContext::createNavigationWidget(KDevelop::Declaration *decl, KDevelop::TopDUContext *topContext, const QString &htmlPrefix, const QString &htmlSuffix, KDevelop::AbstractNavigationWidget::DisplayHints hints) const +QWidget *RustTopDUContext::createNavigationWidget(KDevelop::Declaration *decl, + KDevelop::TopDUContext *topContext, + const QString &htmlPrefix, + const QString &htmlSuffix, + KDevelop::AbstractNavigationWidget::DisplayHints hints) const { return nullptr; } }