diff options
author | Erik Verbruggen <erik.verbruggen@digia.com> | 2014-08-28 14:56:04 +0200 |
---|---|---|
committer | Nikolai Kosjar <nikolai.kosjar@digia.com> | 2014-08-28 17:58:33 +0200 |
commit | 703f36a4b8733a515093e2d1d85a3136728269eb (patch) | |
tree | bcbdf3efe489a651d5bd9608eebad85c704c6ba3 | |
parent | 12642cc49a37e50eb3b099bfd34c28e6259b7526 (diff) | |
download | qt-creator-703f36a4b8733a515093e2d1d85a3136728269eb.tar.gz |
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>
-rw-r--r-- | src/libs/3rdparty/cplusplus/AST.h | 22 | ||||
-rw-r--r-- | src/libs/3rdparty/cplusplus/ASTVisitor.h | 4 | ||||
-rw-r--r-- | src/libs/3rdparty/cplusplus/ASTfwd.h | 2 | ||||
-rw-r--r-- | src/libs/3rdparty/cplusplus/Control.cpp | 28 | ||||
-rw-r--r-- | src/libs/3rdparty/cplusplus/Lexer.cpp | 14 | ||||
-rw-r--r-- | src/libs/3rdparty/cplusplus/LiteralTable.h | 42 | ||||
-rw-r--r-- | src/libs/3rdparty/cplusplus/Names.h | 10 | ||||
-rw-r--r-- | src/libs/3rdparty/cplusplus/TranslationUnit.cpp | 4 | ||||
-rw-r--r-- | src/libs/cplusplus/CppDocument.h | 8 | ||||
-rw-r--r-- | src/libs/cplusplus/PreprocessorEnvironment.cpp | 6 | ||||
-rw-r--r-- | src/libs/cplusplus/ResolveExpression.cpp | 10 | ||||
-rw-r--r-- | src/libs/cplusplus/pp-cctype.h | 16 | ||||
-rw-r--r-- | src/libs/cplusplus/pp-engine.cpp | 12 | ||||
-rw-r--r-- | src/libs/cplusplus/pp-scanner.cpp | 150 | ||||
-rw-r--r-- | src/libs/glsl/glslengine.h | 10 |
15 files changed, 169 insertions, 169 deletions
diff --git a/src/libs/3rdparty/cplusplus/AST.h b/src/libs/3rdparty/cplusplus/AST.h index e0e76f0323..144af639e4 100644 --- a/src/libs/3rdparty/cplusplus/AST.h +++ b/src/libs/3rdparty/cplusplus/AST.h @@ -27,7 +27,7 @@ namespace CPlusPlus { -template <typename _Tp> +template <typename Tptr> class CPLUSPLUS_EXPORT List: public Managed { List(const List &other); @@ -35,10 +35,10 @@ class CPLUSPLUS_EXPORT List: public Managed public: List() - : value(_Tp()), next(0) + : value(Tptr()), next(0) { } - List(const _Tp &value) + List(const Tptr &value) : value(value), next(0) { } @@ -53,7 +53,7 @@ public: unsigned lastToken() const { - _Tp lv = lastValue(); + Tptr lv = lastValue(); if (lv) return lv->lastToken(); @@ -62,9 +62,9 @@ public: return 0; } - _Tp lastValue() const + Tptr lastValue() const { - _Tp lastValue = 0; + Tptr lastValue = 0; for (const List *it = this; it; it = it->next) { if (it->value) @@ -74,7 +74,7 @@ public: return lastValue; } - _Tp value; + Tptr value; List *next; }; @@ -92,8 +92,8 @@ public: static void accept(AST *ast, ASTVisitor *visitor) { if (ast) ast->accept(visitor); } - template <typename _Tp> - static void accept(List<_Tp> *it, ASTVisitor *visitor) + template <typename Tptr> + static void accept(List<Tptr> *it, ASTVisitor *visitor) { for (; it; it = it->next) accept(it->value, visitor); @@ -102,8 +102,8 @@ public: static bool match(AST *ast, AST *pattern, ASTMatcher *matcher); bool match(AST *pattern, ASTMatcher *matcher); - template <typename _Tp> - static bool match(List<_Tp> *it, List<_Tp> *patternIt, ASTMatcher *matcher) + template <typename Tptr> + static bool match(List<Tptr> *it, List<Tptr> *patternIt, ASTMatcher *matcher) { while (it && patternIt) { if (! match(it->value, patternIt->value, matcher)) diff --git a/src/libs/3rdparty/cplusplus/ASTVisitor.h b/src/libs/3rdparty/cplusplus/ASTVisitor.h index 16b6ebd58b..f6428f13b9 100644 --- a/src/libs/3rdparty/cplusplus/ASTVisitor.h +++ b/src/libs/3rdparty/cplusplus/ASTVisitor.h @@ -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); diff --git a/src/libs/3rdparty/cplusplus/ASTfwd.h b/src/libs/3rdparty/cplusplus/ASTfwd.h index f48ae335f6..9723366308 100644 --- a/src/libs/3rdparty/cplusplus/ASTfwd.h +++ b/src/libs/3rdparty/cplusplus/ASTfwd.h @@ -25,7 +25,7 @@ namespace CPlusPlus { -template <typename _Tp> class List; +template <typename Tptr> class List; class AST; class ASTVisitor; diff --git a/src/libs/3rdparty/cplusplus/Control.cpp b/src/libs/3rdparty/cplusplus/Control.cpp index 8402809f7f..75f49d72b1 100644 --- a/src/libs/3rdparty/cplusplus/Control.cpp +++ b/src/libs/3rdparty/cplusplus/Control.cpp @@ -33,7 +33,7 @@ using namespace CPlusPlus; namespace { -template <typename _Tp> +template <typename T> struct Compare; template <> struct Compare<IntegerType> @@ -178,26 +178,26 @@ template <> struct Compare<SelectorNameId> }; -template <typename _Tp> -class Table: public std::set<_Tp, Compare<_Tp> > +template <typename T> +class Table: public std::set<T, Compare<T> > { - typedef std::set<_Tp, Compare<_Tp> > _Base; + typedef std::set<T, Compare<T> > _Base; public: - _Tp *intern(const _Tp &element) - { return const_cast<_Tp *>(&*_Base::insert(element).first); } + T *intern(const T &element) + { return const_cast<T *>(&*_Base::insert(element).first); } }; } // end of anonymous namespace -template <typename _Iterator> -static void delete_array_entries(_Iterator first, _Iterator last) +template <typename Iterator> +static void delete_array_entries(Iterator first, Iterator last) { for (; first != last; ++first) delete *first; } -template <typename _Array> -static void delete_array_entries(const _Array &a) +template <typename Array> +static void delete_array_entries(const Array &a) { delete_array_entries(a.begin(), a.end()); } class Control::Data @@ -233,9 +233,9 @@ public: return anonymousNameIds.intern(AnonymousNameId(classTokenIndex)); } - template <typename _Iterator> + template <typename Iterator> const TemplateNameId *findOrInsertTemplateNameId(const Identifier *id, bool isSpecialization, - _Iterator first, _Iterator last) + Iterator first, Iterator last) { return templateNameIds.intern(TemplateNameId(id, isSpecialization, first, last)); } @@ -260,8 +260,8 @@ public: return qualifiedNameIds.intern(QualifiedNameId(base, name)); } - template <typename _Iterator> - const SelectorNameId *findOrInsertSelectorNameId(_Iterator first, _Iterator last, bool hasArguments) + template <typename Iterator> + const SelectorNameId *findOrInsertSelectorNameId(Iterator first, Iterator last, bool hasArguments) { return selectorNameIds.intern(SelectorNameId(first, last, hasArguments)); } diff --git a/src/libs/3rdparty/cplusplus/Lexer.cpp b/src/libs/3rdparty/cplusplus/Lexer.cpp index 2da7d3a41c..93e47045f3 100644 --- a/src/libs/3rdparty/cplusplus/Lexer.cpp +++ b/src/libs/3rdparty/cplusplus/Lexer.cpp @@ -137,7 +137,7 @@ void Lexer::scan(Token *tok) void Lexer::scan_helper(Token *tok) { - _Lagain: + again: while (_yychar && std::isspace(_yychar)) { if (_yychar == '\n') { tok->f.joined = s._newlineExpected; @@ -198,7 +198,7 @@ void Lexer::scan_helper(Token *tok) } if (! f._scanCommentTokens) - goto _Lagain; + goto again; tok->f.kind = originalKind; return; // done @@ -232,7 +232,7 @@ void Lexer::scan_helper(Token *tok) switch (ch) { case '\\': s._newlineExpected = true; - goto _Lagain; + goto again; case '"': scanStringLiteral(tok); @@ -404,7 +404,7 @@ void Lexer::scan_helper(Token *tok) scanCppComment(commentType); if (! f._scanCommentTokens) - goto _Lagain; + goto again; tok->f.kind = commentType; @@ -419,7 +419,7 @@ void Lexer::scan_helper(Token *tok) yyinp(); if (ch == '*' && _yychar == '/') - goto _Ldone; + goto done; if (_yychar == '<') yyinp(); @@ -438,14 +438,14 @@ void Lexer::scan_helper(Token *tok) } } - _Ldone: + done: if (_yychar) yyinp(); else s._tokenKind = commentKind; if (! f._scanCommentTokens) - goto _Lagain; + goto again; tok->f.kind = commentKind; diff --git a/src/libs/3rdparty/cplusplus/LiteralTable.h b/src/libs/3rdparty/cplusplus/LiteralTable.h index 8f252cb3c6..517e5d1539 100644 --- a/src/libs/3rdparty/cplusplus/LiteralTable.h +++ b/src/libs/3rdparty/cplusplus/LiteralTable.h @@ -26,14 +26,14 @@ namespace CPlusPlus { -template <typename _Literal> +template <typename Literal> class LiteralTable { LiteralTable(const LiteralTable &other); void operator =(const LiteralTable &other); public: - typedef _Literal *const *iterator; + typedef Literal *const *iterator; public: LiteralTable() @@ -52,8 +52,8 @@ public: void reset() { if (_literals) { - _Literal **lastLiteral = _literals + _literalCount + 1; - for (_Literal **it = _literals; it != lastLiteral; ++it) + Literal **lastLiteral = _literals + _literalCount + 1; + for (Literal **it = _literals; it != lastLiteral; ++it) delete *it; std::free(_literals); } @@ -73,7 +73,7 @@ public: unsigned size() const { return _literalCount + 1; } - const _Literal *at(unsigned index) const + const Literal *at(unsigned index) const { return _literals[index]; } iterator begin() const @@ -82,12 +82,12 @@ public: iterator end() const { return _literals + _literalCount + 1; } - const _Literal *findLiteral(const char *chars, unsigned size) const + const Literal *findLiteral(const char *chars, unsigned size) const { if (_buckets) { - unsigned h = _Literal::hashCode(chars, size); - _Literal *literal = _buckets[h % _allocatedBuckets]; - for (; literal; literal = static_cast<_Literal *>(literal->_next)) { + unsigned h = Literal::hashCode(chars, size); + Literal *literal = _buckets[h % _allocatedBuckets]; + for (; literal; literal = static_cast<Literal *>(literal->_next)) { if (literal->size() == size && ! std::strncmp(literal->chars(), chars, size)) return literal; } @@ -96,18 +96,18 @@ public: return 0; } - const _Literal *findOrInsertLiteral(const char *chars, unsigned size) + const Literal *findOrInsertLiteral(const char *chars, unsigned size) { if (_buckets) { - unsigned h = _Literal::hashCode(chars, size); - _Literal *literal = _buckets[h % _allocatedBuckets]; - for (; literal; literal = static_cast<_Literal *>(literal->_next)) { + unsigned h = Literal::hashCode(chars, size); + Literal *literal = _buckets[h % _allocatedBuckets]; + for (; literal; literal = static_cast<Literal *>(literal->_next)) { if (literal->size() == size && ! std::strncmp(literal->chars(), chars, size)) return literal; } } - _Literal *literal = new _Literal(chars, size); + Literal *literal = new Literal(chars, size); if (++_literalCount == _allocatedLiterals) { if (! _allocatedLiterals) @@ -115,7 +115,7 @@ public: else _allocatedLiterals <<= 1; - _literals = (_Literal **) std::realloc(_literals, sizeof(_Literal *) * _allocatedLiterals); + _literals = (Literal **) std::realloc(_literals, sizeof(Literal *) * _allocatedLiterals); } _literals[_literalCount] = literal; @@ -142,12 +142,12 @@ protected: else _allocatedBuckets <<= 1; - _buckets = (_Literal **) std::calloc(_allocatedBuckets, sizeof(_Literal *)); + _buckets = (Literal **) std::calloc(_allocatedBuckets, sizeof(Literal *)); - _Literal **lastLiteral = _literals + (_literalCount + 1); + Literal **lastLiteral = _literals + (_literalCount + 1); - for (_Literal **it = _literals; it != lastLiteral; ++it) { - _Literal *literal = *it; + for (Literal **it = _literals; it != lastLiteral; ++it) { + Literal *literal = *it; unsigned h = literal->hashCode() % _allocatedBuckets; literal->_next = _buckets[h]; @@ -156,8 +156,8 @@ protected: } protected: - _Literal **_literals; - _Literal **_buckets; + Literal **_literals; + Literal **_buckets; int _allocatedLiterals; int _literalCount; int _allocatedBuckets; diff --git a/src/libs/3rdparty/cplusplus/Names.h b/src/libs/3rdparty/cplusplus/Names.h index 3d48b6a237..33f40d523d 100644 --- a/src/libs/3rdparty/cplusplus/Names.h +++ b/src/libs/3rdparty/cplusplus/Names.h @@ -77,9 +77,9 @@ private: class CPLUSPLUS_EXPORT TemplateNameId: public Name { public: - template <typename _Iterator> - TemplateNameId(const Identifier *identifier, bool isSpecialization, _Iterator first, - _Iterator last) + template <typename Iterator> + TemplateNameId(const Identifier *identifier, bool isSpecialization, Iterator first, + Iterator last) : _identifier(identifier) , _templateArguments(first, last) , _isSpecialization(isSpecialization) {} @@ -220,8 +220,8 @@ private: class CPLUSPLUS_EXPORT SelectorNameId: public Name { public: - template <typename _Iterator> - SelectorNameId(_Iterator first, _Iterator last, bool hasArguments) + template <typename Iterator> + SelectorNameId(Iterator first, Iterator last, bool hasArguments) : _names(first, last), _hasArguments(hasArguments) {} virtual ~SelectorNameId(); diff --git a/src/libs/3rdparty/cplusplus/TranslationUnit.cpp b/src/libs/3rdparty/cplusplus/TranslationUnit.cpp index df9c2151a4..ace6eda549 100644 --- a/src/libs/3rdparty/cplusplus/TranslationUnit.cpp +++ b/src/libs/3rdparty/cplusplus/TranslationUnit.cpp @@ -162,7 +162,7 @@ void TranslationUnit::tokenize() do { lex(&tk); - _Lrecognize: +recognize: if (tk.is(T_POUND) && tk.newline()) { const unsigned utf16CharOffset = tk.utf16charOffset; lex(&tk); @@ -244,7 +244,7 @@ void TranslationUnit::tokenize() while (tk.isNot(T_EOF_SYMBOL) && ! tk.newline()) lex(&tk); } - goto _Lrecognize; + goto recognize; } else if (tk.kind() == T_LBRACE) { braces.push(unsigned(_tokens->size())); } else if (tk.kind() == T_RBRACE && ! braces.empty()) { diff --git a/src/libs/cplusplus/CppDocument.h b/src/libs/cplusplus/CppDocument.h index 527f2ed82b..43a77aba17 100644 --- a/src/libs/cplusplus/CppDocument.h +++ b/src/libs/cplusplus/CppDocument.h @@ -391,14 +391,14 @@ private: class CPLUSPLUS_EXPORT Snapshot { - typedef QHash<QString, Document::Ptr> _Base; + typedef QHash<QString, Document::Ptr> Base; public: Snapshot(); ~Snapshot(); - typedef _Base::const_iterator iterator; - typedef _Base::const_iterator const_iterator; + typedef Base::const_iterator iterator; + typedef Base::const_iterator const_iterator; int size() const; // ### remove bool isEmpty() const; @@ -428,7 +428,7 @@ private: void allIncludesForDocument_helper(const QString &fileName, QSet<QString> &result) const; private: - _Base _documents; + Base _documents; }; } // namespace CPlusPlus diff --git a/src/libs/cplusplus/PreprocessorEnvironment.cpp b/src/libs/cplusplus/PreprocessorEnvironment.cpp index 792e48bb94..8cb9abcddc 100644 --- a/src/libs/cplusplus/PreprocessorEnvironment.cpp +++ b/src/libs/cplusplus/PreprocessorEnvironment.cpp @@ -99,11 +99,11 @@ Macro *Environment::macroAt(unsigned index) const return _macros[index]; } -Macro *Environment::bind(const Macro &__macro) +Macro *Environment::bind(const Macro ¯o) { - Q_ASSERT(! __macro.name().isEmpty()); + Q_ASSERT(! macro.name().isEmpty()); - Macro *m = new Macro (__macro); + Macro *m = new Macro (macro); const QByteArray &name = m->name(); m->_hashcode = hashCode(name.begin(), name.size()); diff --git a/src/libs/cplusplus/ResolveExpression.cpp b/src/libs/cplusplus/ResolveExpression.cpp index bdf7a5a2d1..9d1085faf9 100644 --- a/src/libs/cplusplus/ResolveExpression.cpp +++ b/src/libs/cplusplus/ResolveExpression.cpp @@ -58,12 +58,12 @@ static const bool debug = ! qgetenv("QTC_LOOKUPCONTEXT_DEBUG").isEmpty(); namespace { -template <typename _Tp> -static QList<_Tp> removeDuplicates(const QList<_Tp> &results) +template <typename T> +static QList<T> removeDuplicates(const QList<T> &results) { - QList<_Tp> uniqueList; - QSet<_Tp> processed; - foreach (const _Tp &r, results) { + QList<T> uniqueList; + QSet<T> processed; + foreach (const T &r, results) { if (processed.contains(r)) continue; diff --git a/src/libs/cplusplus/pp-cctype.h b/src/libs/cplusplus/pp-cctype.h index 503a6a510f..be1c9b9412 100644 --- a/src/libs/cplusplus/pp-cctype.h +++ b/src/libs/cplusplus/pp-cctype.h @@ -55,17 +55,17 @@ namespace CPlusPlus { -inline bool CPLUSPLUS_EXPORT pp_isalpha (int __ch) -{ return std::isalpha ((unsigned char) __ch) != 0; } +inline bool CPLUSPLUS_EXPORT pp_isalpha (int ch) +{ return std::isalpha ((unsigned char) ch) != 0; } -inline bool CPLUSPLUS_EXPORT pp_isalnum (int __ch) -{ return std::isalnum ((unsigned char) __ch) != 0; } +inline bool CPLUSPLUS_EXPORT pp_isalnum (int ch) +{ return std::isalnum ((unsigned char) ch) != 0; } -inline bool CPLUSPLUS_EXPORT pp_isdigit (int __ch) -{ return std::isdigit ((unsigned char) __ch) != 0; } +inline bool CPLUSPLUS_EXPORT pp_isdigit (int ch) +{ return std::isdigit ((unsigned char) ch) != 0; } -inline bool CPLUSPLUS_EXPORT pp_isspace (int __ch) -{ return std::isspace ((unsigned char) __ch) != 0; } +inline bool CPLUSPLUS_EXPORT pp_isspace (int ch) +{ return std::isspace ((unsigned char) ch) != 0; } } // namespace CPlusPlus diff --git a/src/libs/cplusplus/pp-engine.cpp b/src/libs/cplusplus/pp-engine.cpp index 94fbd8496b..6c883307f4 100644 --- a/src/libs/cplusplus/pp-engine.cpp +++ b/src/libs/cplusplus/pp-engine.cpp @@ -834,13 +834,13 @@ void Preprocessor::pushToken(Preprocessor::PPToken *tk) void Preprocessor::lex(PPToken *tk) { -_Lagain: +again: if (m_state.m_tokenBuffer) { // There is a token buffer, so read from there. if (m_state.m_tokenBuffer->tokens.empty()) { // The token buffer is empty, so pop it, and start over. m_state.popTokenBuffer(); - goto _Lagain; + goto again; } *tk = m_state.m_tokenBuffer->tokens.front(); m_state.m_tokenBuffer->tokens.pop_front(); @@ -859,17 +859,17 @@ _Lagain: // Adjust token's line number in order to take into account the environment reference. tk->lineno += m_state.m_lineRef - 1; -_Lclassify: +reclassify: if (! m_state.m_inPreprocessorDirective) { if (tk->newline() && tk->is(T_POUND)) { handlePreprocessorDirective(tk); - goto _Lclassify; + goto reclassify; } else if (tk->newline() && skipping()) { ScopedBoolSwap s(m_state.m_inPreprocessorDirective, true); do { lex(tk); } while (isContinuationToken(*tk)); - goto _Lclassify; + goto reclassify; } else if (tk->is(T_IDENTIFIER) && !isQtReservedWord(tk->tokenStart(), tk->bytes())) { m_state.updateIncludeGuardState(State::IncludeGuardStateHint_OtherToken); if (m_state.m_inCondition && tk->asByteArrayRef() == "defined") { @@ -877,7 +877,7 @@ _Lclassify: } else { synchronizeOutputLines(*tk); if (handleIdentifier(tk)) - goto _Lagain; + goto again; } } else if (tk->isNot(T_COMMENT) && tk->isNot(T_EOF_SYMBOL)) { m_state.updateIncludeGuardState(State::IncludeGuardStateHint_OtherToken); diff --git a/src/libs/cplusplus/pp-scanner.cpp b/src/libs/cplusplus/pp-scanner.cpp index 51d5c5671d..fea29d9cd2 100644 --- a/src/libs/cplusplus/pp-scanner.cpp +++ b/src/libs/cplusplus/pp-scanner.cpp @@ -51,39 +51,39 @@ using namespace CPlusPlus; -const char *pp_skip_blanks::operator () (const char *__first, const char *__last) +const char *pp_skip_blanks::operator () (const char *first, const char *last) { lines = 0; - for (; __first != __last; lines += (*__first != '\n' ? 0 : 1), ++__first) { - if (*__first == '\\') { - const char *__begin = __first; - ++__begin; + for (; first != last; lines += (*first != '\n' ? 0 : 1), ++first) { + if (*first == '\\') { + const char *begin = first; + ++begin; - if (__begin != __last && *__begin == '\n') - ++__first; + if (begin != last && *begin == '\n') + ++first; else break; - } else if (*__first == '\n' || !pp_isspace (*__first)) + } else if (*first == '\n' || !pp_isspace (*first)) break; } - return __first; + return first; } -const char *pp_skip_whitespaces::operator () (const char *__first, const char *__last) +const char *pp_skip_whitespaces::operator () (const char *first, const char *last) { lines = 0; - for (; __first != __last; lines += (*__first != '\n' ? 0 : 1), ++__first) { - if (! pp_isspace (*__first)) + for (; first != last; lines += (*first != '\n' ? 0 : 1), ++first) { + if (! pp_isspace (*first)) break; } - return __first; + return first; } -const char *pp_skip_comment_or_divop::operator () (const char *__first, const char *__last) +const char *pp_skip_comment_or_divop::operator () (const char *first, const char *last) { enum { MAYBE_BEGIN, @@ -96,77 +96,77 @@ const char *pp_skip_comment_or_divop::operator () (const char *__first, const ch lines = 0; - for (; __first != __last; lines += (*__first != '\n' ? 0 : 1), ++__first) { + for (; first != last; lines += (*first != '\n' ? 0 : 1), ++first) { switch (state) { default: break; case MAYBE_BEGIN: - if (*__first != '/') - return __first; + if (*first != '/') + return first; state = BEGIN; break; case BEGIN: - if (*__first == '*') + if (*first == '*') state = IN_COMMENT; - else if (*__first == '/') + else if (*first == '/') state = IN_CXX_COMMENT; else - return __first; + return first; break; case IN_COMMENT: - if (*__first == '*') + if (*first == '*') state = MAYBE_END; break; case IN_CXX_COMMENT: - if (*__first == '\n') - return __first; + if (*first == '\n') + return first; break; case MAYBE_END: - if (*__first == '/') + if (*first == '/') state = END; - else if (*__first != '*') + else if (*first != '*') state = IN_COMMENT; break; case END: - return __first; + return first; } } - return __first; + return first; } -const char *pp_skip_identifier::operator () (const char *__first, const char *__last) +const char *pp_skip_identifier::operator () (const char *first, const char *last) { lines = 0; - for (; __first != __last; lines += (*__first != '\n' ? 0 : 1), ++__first) { - if (! pp_isalnum (*__first) && *__first != '_') + for (; first != last; lines += (*first != '\n' ? 0 : 1), ++first) { + if (! pp_isalnum (*first) && *first != '_') break; } - return __first; + return first; } -const char *pp_skip_number::operator () (const char *__first, const char *__last) +const char *pp_skip_number::operator () (const char *first, const char *last) { lines = 0; - for (; __first != __last; lines += (*__first != '\n' ? 0 : 1), ++__first) { - if (! pp_isalnum (*__first) && *__first != '.') + for (; first != last; lines += (*first != '\n' ? 0 : 1), ++first) { + if (! pp_isalnum (*first) && *first != '.') break; } - return __first; + return first; } -const char *pp_skip_string_literal::operator () (const char *__first, const char *__last) +const char *pp_skip_string_literal::operator () (const char *first, const char *last) { enum { BEGIN, @@ -177,25 +177,25 @@ const char *pp_skip_string_literal::operator () (const char *__first, const char lines = 0; - for (; __first != __last; lines += (*__first != '\n' ? 0 : 1), ++__first) { + for (; first != last; lines += (*first != '\n' ? 0 : 1), ++first) { switch (state) { default: break; case BEGIN: - if (*__first != '\"') - return __first; + if (*first != '\"') + return first; state = IN_STRING; break; case IN_STRING: - if (! (*__first != '\n')) - return __last; + if (! (*first != '\n')) + return last; - if (*__first == '\"') + if (*first == '\"') state = END; - else if (*__first == '\\') + else if (*first == '\\') state = QUOTE; break; @@ -204,14 +204,14 @@ const char *pp_skip_string_literal::operator () (const char *__first, const char break; case END: - return __first; + return first; } } - return __first; + return first; } -const char *pp_skip_char_literal::operator () (const char *__first, const char *__last) +const char *pp_skip_char_literal::operator () (const char *first, const char *last) { enum { BEGIN, @@ -222,25 +222,25 @@ const char *pp_skip_char_literal::operator () (const char *__first, const char * lines = 0; - for (; state != END && __first != __last; lines += (*__first != '\n' ? 0 : 1), ++__first) { + for (; state != END && first != last; lines += (*first != '\n' ? 0 : 1), ++first) { switch (state) { default: break; case BEGIN: - if (*__first != '\'') - return __first; + if (*first != '\'') + return first; state = IN_STRING; break; case IN_STRING: - if (! (*__first != '\n')) - return __last; + if (! (*first != '\n')) + return last; - if (*__first == '\'') + if (*first == '\'') state = END; - else if (*__first == '\\') + else if (*first == '\\') state = QUOTE; break; @@ -250,44 +250,44 @@ const char *pp_skip_char_literal::operator () (const char *__first, const char * } } - return __first; + return first; } -const char *pp_skip_argument::operator () (const char *__first, const char *__last) +const char *pp_skip_argument::operator () (const char *first, const char *last) { int depth = 0; lines = 0; - while (__first != __last) { - if (!depth && (*__first == ')' || *__first == ',')) { + while (first != last) { + if (!depth && (*first == ')' || *first == ',')) { break; - } else if (*__first == '(') { - ++depth, ++__first; - } else if (*__first == ')') { - --depth, ++__first; - } else if (*__first == '\"') { - __first = skip_string_literal (__first, __last); + } else if (*first == '(') { + ++depth, ++first; + } else if (*first == ')') { + --depth, ++first; + } else if (*first == '\"') { + first = skip_string_literal (first, last); lines += skip_string_literal.lines; - } else if (*__first == '\'') { - __first = skip_char_literal (__first, __last); + } else if (*first == '\'') { + first = skip_char_literal (first, last); lines += skip_char_literal.lines; - } else if (*__first == '/') { - __first = skip_comment_or_divop (__first, __last); + } else if (*first == '/') { + first = skip_comment_or_divop (first, last); lines += skip_comment_or_divop.lines; - } else if (pp_isalpha (*__first) || *__first == '_') { - __first = skip_identifier (__first, __last); + } else if (pp_isalpha (*first) || *first == '_') { + first = skip_identifier (first, last); lines += skip_identifier.lines; - } else if (pp_isdigit (*__first)) { - __first = skip_number (__first, __last); + } else if (pp_isdigit (*first)) { + first = skip_number (first, last); lines += skip_number.lines; - } else if (*__first == '\n') { - ++__first; + } else if (*first == '\n') { + ++first; ++lines; } else { - ++__first; + ++first; } } - return __first; + return first; } diff --git a/src/libs/glsl/glslengine.h b/src/libs/glsl/glslengine.h index 3a57d70d76..2999956c88 100644 --- a/src/libs/glsl/glslengine.h +++ b/src/libs/glsl/glslengine.h @@ -72,20 +72,20 @@ private: int _line; }; -template <typename _Type> +template <typename Type> class TypeTable { public: - struct Compare: std::binary_function<_Type, _Type, bool> { - bool operator()(const _Type &value, const _Type &other) const { + struct Compare: std::binary_function<Type, Type, bool> { + bool operator()(const Type &value, const Type &other) const { return value.isLessThan(&other); } }; - const _Type *intern(const _Type &ty) { return &*_entries.insert(ty).first; } + const Type *intern(const Type &ty) { return &*_entries.insert(ty).first; } private: - std::set<_Type, Compare> _entries; + std::set<Type, Compare> _entries; }; class GLSL_EXPORT Engine |