[umbrello] [Bug 383319] New: Classes declared in namespaces but defined outside are not imported

Daniele E. Domenichelli bugzilla_noreply at kde.org
Wed Aug 9 14:48:26 UTC 2017


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

            Bug ID: 383319
           Summary: Classes declared in namespaces but defined outside are
                    not imported
           Product: umbrello
           Version: 2.20.3 (KDE Applications 16.08.3)
          Platform: Other
                OS: Linux
            Status: UNCONFIRMED
          Severity: normal
          Priority: NOR
         Component: general
          Assignee: umbrello-devel at kde.org
          Reporter: ddomenichelli at kde.org
  Target Milestone: ---

A class declared in this way:

---
namespace test {
class test;
}

class test::foo
{
    test();
};
---

is not imported, only the namespace is created.

On the other side a class declared properly in this way

---
namespace test2 {
class foo
{
    test2();
};
}
---

imports both the namespace and the class.

The first example is valid c++ code, therefore I'd expect them to produce the
same result.

-- 
You are receiving this mail because:
You are the assignee for the bug.


More information about the umbrello-devel mailing list