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:
Erik Verbruggen
2014-08-28 14:56:04 +02:00
committed by Nikolai Kosjar
parent 12642cc49a
commit 703f36a4b8
15 changed files with 169 additions and 169 deletions

View File

@@ -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);