https://bugs.kde.org/show_bug.cgi?id=378090

--- Comment #1 from Nicolás Alvarez <nicolas.alva...@gmail.com> ---
A potentially related problem:

template<typename T>
struct Base {
    virtual void blah(int x);
    virtual void foo(const T& x){}
};

struct Derived: public Base<int>
{
    void blah(int x) override;
    void foo(const int& x) override;

    // code completion here doesn't list "blah" because it knows it's already
    // overridden, but it still shows foo(const T&) because it doesn't realize
    // foo(const int&) is an override of it
};

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to