KDevelop 语义分析器变得疯狂 std::variant。如何处理?

KDevelop semantic analyser getting crazy with std::variant. How to deal with it?

在使用 KDevelop 时,我遇到了一些语义分析器变得疯狂的代码:它主要认为完整的 header 在语义上是错误的,到处都是丑陋的红色突出显示。

我最大限度地简化了代码,这是结果:

以防万一,为了测试MyClass.hpp:

#pragma once

#include <memory>
#include <variant>

template <typename Real, typename Index>
using Io = std::variant<Real, Index>;


template <typename Real, typename Index>
struct MyClass
{
    std::shared_ptr<Io<Real, Index>> ioPtr;
};

我可以构建这段代码(只需在另一个文件中添加一个主函数),因此将其视为有效代码。

KDevelop 版本是当前的 Debian 版本:5.3.1(不幸的是不是最新版本)

问题:

为什么会这样? 我可以做些什么来避免这种情况吗? (不更改代码)

在KDevelop中,您需要设置解析器语言版本。这是在 Project -> Open configuration -> Language support -> C++ Parser 中完成的。然后,您将能够 select C++17 作为解析器的语言版本。