| Commit message (Expand) | Author | Age | Files | Lines |
| * | moc: rewrite mergeStringLiterals() to avoid O(N²) algorithm | Marc Mutz | 2025-08-01 | 1 | -22/+58 |
| * | moc: pass Symbols by reference, not pointer | Marc Mutz | 2025-07-29 | 1 | -3/+2 |
| * | moc: add lexem() functions that return QByteArrayViews | Aurélien Brooke | 2025-07-21 | 1 | -8/+7 |
| * | moc: use the new QStack::push(T&&) function to push on the symbols stack | Aurélien Brooke | 2025-07-21 | 1 | -2/+2 |
| * | moc: reserve() enough space for the SymbolStack | Aurélien Brooke | 2025-07-18 | 1 | -0/+1 |
| * | moc: support __has_include | Fabian Kosmale | 2025-06-14 | 1 | -5/+45 |
| * | moc: Treat number + characters as Identifier, not Number | Fabian Kosmale | 2024-04-17 | 1 | -2/+11 |
| * | moc: Remove remnants of USE_LEXEM_STORE | Fabian Kosmale | 2023-08-10 | 1 | -19/+2 |
| * | moc: handle "L" integer suffix | Fabian Kosmale | 2023-07-28 | 1 | -3/+9 |
| * | MOC: use methods from QtMiscUtils | Ahmad Samir | 2023-06-22 | 1 | -8/+10 |
| * | Moc: fix narrowing conversion warnings by using iterator-based for-loop | Ahmad Samir | 2023-06-20 | 1 | -4/+7 |
| * | Moc: port to qsizetype | Ahmad Samir | 2023-06-20 | 1 | -5/+5 |
| * | Moc: port to qsizetype | Ahmad Samir | 2023-05-28 | 1 | -2/+2 |
| * | Moc: fix some narrowing conversion warnings by using range operations | Ahmad Samir | 2023-05-18 | 1 | -7/+9 |
| * | Port from container.count()/length() to size() | Marc Mutz | 2022-10-04 | 1 | -2/+2 |
| * | Use SPDX license identifiers | Lucie Gérard | 2022-05-16 | 1 | -28/+3 |
| * | moc: Add --debug-includes option to moc | Alexandru Croitor | 2022-04-05 | 1 | -4/+37 |
| * | Core: Do not depend on transitive includes | Fabian Kosmale | 2022-03-17 | 1 | -0/+1 |
| * | Avoid signed overflow in moc | Fabian Kosmale | 2020-12-03 | 1 | -1/+9 |
| * | Tidy nullptr usage | Allan Sandfeld Jensen | 2019-12-06 | 1 | -1/+1 |
| * | Make moc grok binary literals with digit separators | Ville Voutilainen | 2019-05-10 | 1 | -1/+2 |
| * | Simplify ifs since PP_WHITESPACE and WHITESPACE are the same | Albert Astals Cid | 2018-01-15 | 1 | -3/+3 |
| * | Fix clazy-strict-iterators | Friedemann Kleint | 2017-10-25 | 1 | -1/+1 |
| * | moc: Don't error out when defining a keyword | Olivier Goffart | 2017-06-06 | 1 | -7/+6 |
| * | moc: Fix parsing of digit separator | Olivier Goffart | 2017-03-08 | 1 | -8/+8 |
| * | moc: Cache header lookups to reduce number of file stat's | Thomas Sondergaard | 2016-11-03 | 1 | -8/+21 |
| * | moc: Fix asserts on moc on empty token preceding ## operator | Olivier Goffart | 2016-09-16 | 1 | -3/+3 |
| * | Support C++17 fallthrough attribute | Allan Sandfeld Jensen | 2016-08-19 | 1 | -5/+5 |
| * | Merge "Merge remote-tracking branch 'origin/5.7' into dev" into refs/staging/dev | Edward Welbourne | 2016-07-22 | 1 | -4/+4 |
| |\ |
|
| | * | Merge remote-tracking branch 'origin/5.7' into dev | Edward Welbourne | 2016-07-19 | 1 | -4/+4 |
| | |\ |
|
| | | * | Merge remote-tracking branch 'origin/5.6' into 5.7 | Edward Welbourne | 2016-07-15 | 1 | -4/+4 |
| | | |\ |
|
| | | | * | moc: Fix a crash with malformed input | Olivier Goffart | 2016-07-15 | 1 | -4/+4 |
| * | | | | moc: get the system #defines from the compiler itself | Thiago Macieira | 2016-07-20 | 1 | -25/+33 |
| |/ / / |
|
| * / / | Don't error out on preprocessor concatenation of two strings | Lars Knoll | 2016-07-13 | 1 | -5/+2 |
| |/ / |
|
| * | | Merge remote-tracking branch 'origin/5.6' into 5.7 | Liang Qi | 2016-05-19 | 1 | -2/+4 |
| |\| |
|
| | * | Moc: fix crash when a file ends with \\\r | Olivier Goffart | 2016-05-18 | 1 | -2/+4 |
| * | | Moc: use QStringBuilder more | Anton Kudryavtsev | 2016-04-20 | 1 | -7/+7 |
| * | | Moc: use const (and const APIs) more | Anton Kudryavtsev | 2016-04-18 | 1 | -9/+9 |
| * | | Updated license headers | Jani Heikkinen | 2016-01-21 | 1 | -17/+12 |
| * | | Optimize moc: Preallocate space for list of preprocessed symbols. | Milian Wolff | 2015-12-12 | 1 | -0/+4 |
| * | | Merge remote-tracking branch 'origin/5.6' into dev | Liang Qi | 2015-10-23 | 1 | -1/+4 |
| |\| |
|
| | * | Split two error cases so they get reported distinctly. | Edward Welbourne | 2015-10-16 | 1 | -1/+4 |
| * | | Optimize moc: Preallocate some space for tokenization results. | Milian Wolff | 2015-09-14 | 1 | -0/+5 |
| |/ |
|
| * | moc: Make toExpand const, we do not modify it. | Milian Wolff | 2015-07-23 | 1 | -1/+1 |
| * | Optimize moc: Preallocate space for list of arguments on the stack. | Milian Wolff | 2015-07-22 | 1 | -1/+1 |
| * | Optimize moc: Remove another temporary list allocation. | Milian Wolff | 2015-07-14 | 1 | -5/+5 |
| * | Optimize moc: Remove temporary allocations during macro expansion. | Milian Wolff | 2015-07-13 | 1 | -9/+6 |
| * | moc: Fix crash parsing invalid macro invocation | Olivier Goffart | 2015-05-30 | 1 | -3/+5 |
| * | Update copyright headers | Jani Heikkinen | 2015-02-11 | 1 | -7/+7 |
| * | Merge remote-tracking branch 'origin/5.4' into dev | Frederik Gladhorn | 2014-11-24 | 1 | -5/+1 |
| |\ |
|