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

            Bug ID: 360357
           Summary: "Find Uses" should find call to ctor in member
                    initializer list
           Product: kdevelop
           Version: git master
          Platform: Compiled Sources
                OS: Linux
            Status: UNCONFIRMED
          Severity: normal
          Priority: NOR
         Component: Language Support: CPP (Clang-based)
          Assignee: kdevelop-bugs-n...@kde.org
          Reporter: aspotas...@gmail.com

In the following code sample, "Find Uses" on A::A() should find "m_a(x)" which
essentially is a call to A::A(). This currently does not work: "Find Uses"
finds only the declaration of A's ctor.

=====
class A
{
public:
    explicit A(int x)
        : m_x(x)
    {
    }

private:
    int m_x;
};

class B
{
public:
    explicit B(int x)
        : m_a(x)
    {
    }
};


Reproducible: Always

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

Reply via email to