forked from qt-creator/qt-creator
C++: remove reserved names.
See [global.names] (17.6.4.3.2 in the C++11 spec.) Change-Id: I8434496dbe392b52d339d5f17cfaeee8dbd88995 Reviewed-by: Nikolai Kosjar <nikolai.kosjar@digia.com>
This commit is contained in:
committed by
Nikolai Kosjar
parent
12642cc49a
commit
703f36a4b8
4
src/libs/3rdparty/cplusplus/ASTVisitor.h
vendored
4
src/libs/3rdparty/cplusplus/ASTVisitor.h
vendored
@@ -63,8 +63,8 @@ public:
|
||||
|
||||
void accept(AST *ast);
|
||||
|
||||
template <typename _Tp>
|
||||
void accept(List<_Tp> *it)
|
||||
template <typename Tptr>
|
||||
void accept(List<Tptr> *it)
|
||||
{
|
||||
for (; it; it = it->next)
|
||||
accept(it->value);
|
||||
|
||||
Reference in New Issue
Block a user