forked from qt-creator/qt-creator
CppEditor: Remove using namespace quickfix: Don't insert inline namespaces
Change-Id: If386d31de723ca928d3c50f55e32205c50937b0a Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
@@ -314,8 +314,11 @@ public:
|
||||
QSharedPointer<CreateBindings> bindings() const
|
||||
{ return _bindings; }
|
||||
|
||||
static QList<const Name *> fullyQualifiedName(Symbol *symbol);
|
||||
static QList<const Name *> path(Symbol *symbol);
|
||||
enum InlineNamespacePolicy { ShowInlineNamespaces, HideInlineNamespaces };
|
||||
static QList<const Name *> fullyQualifiedName(
|
||||
Symbol *symbol, InlineNamespacePolicy policy = ShowInlineNamespaces);
|
||||
static QList<const Name *> path(Symbol *symbol,
|
||||
InlineNamespacePolicy policy = ShowInlineNamespaces);
|
||||
|
||||
static const Name *minimalName(Symbol *symbol, ClassOrNamespace *target, Control *control);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user