forked from qt-creator/qt-creator
Don't use return keyword when not necessary
Change-Id: I4b9fad1eee60e942ddbccda53a4af27e978df498 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
committed by
Laurent Montel
parent
660c4ced86
commit
f18ae4ff6f
@@ -223,7 +223,7 @@ public:
|
||||
static void accept(Node *node, Visitor *visitor);
|
||||
|
||||
inline static void acceptChild(Node *node, Visitor *visitor)
|
||||
{ return accept(node, visitor); } // ### remove
|
||||
{ accept(node, visitor); } // ### remove
|
||||
|
||||
virtual void accept0(Visitor *visitor) = 0;
|
||||
virtual SourceLocation firstSourceLocation() const = 0;
|
||||
|
||||
Reference in New Issue
Block a user