Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Refactoring: remove implicit conversion from QCString to const char * | Dimitri van Heesch | 2021-04-22 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | | | This commit changes the following in relation to string use - The implicit convert from 'QCString' to 'const char *' is removed - Strings parameters use 'const QCString &' as much as possible in favor over 'const char *' - 'if (s)' where s is a QCString has been replaced by 'if(!s.isEmpty())' - data() now always returns a valid C-string and not a 0-pointer. - when passing a string 's' to printf and related functions 'qPrint(s)' is used instead of 's.data()' - for empty string arguments 'QCString()' is used instead of '0' - The copy() operation has been removed - Where possible 'qstrcmp(a,b)==0' has been replaces by 'a==b' and 'qstrcmp(a,b)<0' has been replaced by 'a<b' - Parameters of string type that were default initialized with '= 0' are no initialized with '= QCString()' | ||||
* | issue #2732: Adding support for C++ concepts (Origin: bugzilla #499352) | Dimitri van Heesch | 2021-04-08 | 1 | -3/+7 |
| | |||||
* | Refactoring: Add TextStream buffer to improve output writing performance | Dimitri van Heesch | 2021-03-28 | 1 | -1/+1 |
| | | | | | - direct use of std::stringstream and std::ostream gave a 30% drop in performance. | ||||
* | Refactoring: replace QFile/FTextStream with fstream/stringstream | Dimitri van Heesch | 2021-03-18 | 1 | -2/+1 |
| | |||||
* | Refactoring: Replaced QFileInfo with FileInfo | Dimitri van Heesch | 2021-03-18 | 1 | -1/+1 |
| | | | | | - FileInfo is based on ghc::filesystem, a std::filesystem compatible implementation that does not require C++17. | ||||
* | Refactoring: remove unused function generateFileTree() | Dimitri van Heesch | 2021-01-22 | 1 | -49/+0 |
| | |||||
* | Refactoring: modernize FileList | Dimitri van Heesch | 2021-01-22 | 1 | -13/+10 |
| | |||||
* | Refactoring: modernize OutputNameList/OutputNameDict | Dimitri van Heesch | 2021-01-22 | 1 | -24/+0 |
| | |||||
* | Refactoring: modernize IncludeInfo list | Dimitri van Heesch | 2021-01-22 | 1 | -9/+14 |
| | |||||
* | Refactoring: remove unused sortdict.h | Dimitri van Heesch | 2021-01-22 | 1 | -1/+0 |
| | |||||
* | Refactoring: modernize getMemberLists() | Dimitri van Heesch | 2021-01-04 | 1 | -1/+1 |
| | |||||
* | Refactoring: replace MemberSDict by MemberLinkedRefMap | Dimitri van Heesch | 2021-01-04 | 1 | -3/+3 |
| | |||||
* | Refactoring: remove unused ClassList | Dimitri van Heesch | 2021-01-02 | 1 | -1/+0 |
| | |||||
* | Refactoring: change MemberGroupSDict to MemberGroupList | Dimitri van Heesch | 2020-12-30 | 1 | -2/+1 |
| | |||||
* | Refactoring: replaced getNamespaceSDict() by getNamespaces() | Dimitri van Heesch | 2020-12-23 | 1 | -3/+3 |
| | |||||
* | Refactoring: replace ClassSDict by ClassLinkedMap/ClassLinkedRefMap | Dimitri van Heesch | 2020-12-19 | 1 | -3/+2 |
| | |||||
* | Improve handling of inline namespace members in LateX/RTF output | Dimitri van Heesch | 2020-12-02 | 1 | -1/+1 |
| | |||||
* | Refactoring: removing setVisited/isVisited members | Dimitri van Heesch | 2020-11-20 | 1 | -5/+7 |
| | |||||
* | Refactoring: replacing dynamic_cast by static_cast to improve performance | Dimitri van Heesch | 2020-11-13 | 1 | -1/+10 |
| | |||||
* | Refactoring: Introduce immutable and mutable interfaces | Dimitri van Heesch | 2020-11-09 | 1 | -1/+1 |
| | | | | | | Split Definition/ClassDef/NamespaceDef/MemberDef into a immutable and mutable part Aliases are immutable, other symbols are stored using an immutable interface but can be made mutable explicitly by dynamic casting. | ||||
* | Refactoring: modernized the getUsedNamespaces() method | Dimitri van Heesch | 2020-11-01 | 1 | -1/+1 |
| | |||||
* | Refactoring: modernize getUsedClasses() method | Dimitri van Heesch | 2020-10-29 | 1 | -2/+3 |
| | |||||
* | Refactoring: prepare output generators for multi-threaded use | Dimitri van Heesch | 2020-09-27 | 1 | -1/+3 |
| | |||||
* | Refactor: Modernize clang parser and make it run with multiple threads | Dimitri van Heesch | 2020-07-16 | 1 | -5/+5 |
| | |||||
* | Refactor: make preprocessor run in parallel | Dimitri van Heesch | 2020-06-28 | 1 | -3/+2 |
| | | | | | And at the same time make sure it gives the same results as when processed using a single thread. | ||||
* | Refactor: make QCString a wrapper around std::string | Dimitri van Heesch | 2020-06-10 | 1 | -12/+12 |
| | |||||
* | Enabled stricter compiler warnings and fixed all new warnings | Dimitri van Heesch | 2020-03-08 | 1 | -1/+1 |
| | |||||
* | Improved const correctness and added support for inline namespaces | Dimitri van Heesch | 2019-04-21 | 1 | -3/+7 |
| | |||||
* | Refactored Definition and derived classes such that they are abstract interfaces | Dimitri van Heesch | 2019-02-28 | 1 | -138/+80 |
| | |||||
* | Added *.ice files as a recognized file type. | Mark Spruiell | 2018-10-22 | 1 | -1/+5 |
| | | | | Added a Slice-optimized output mode. | ||||
* | Optimized use of convertNameToFile to improve performance | Dimitri van Heesch | 2016-02-07 | 1 | -8/+9 |
| | |||||
* | IncludeInfo class had uninitialized member variable | Dimitri van Heesch | 2015-09-13 | 1 | -1/+1 |
| | |||||
* | Bump copyright year | Dimitri van Heesch | 2015-02-26 | 1 | -1/+1 |
| | |||||
* | Introduce new optimized string implementation (attempt 2) | Dimitri van Heesch | 2014-10-23 | 1 | -1/+1 |
| | |||||
* | Bug 736992 - Member functions omitted from tagfile | Dimitri van Heesch | 2014-09-22 | 1 | -0/+2 |
| | |||||
* | Updated copyright | Dimitri van Heesch | 2014-02-11 | 1 | -1/+1 |
| | |||||
* | Reduced and improved functionality of QList | Dimitri van Heesch | 2013-12-30 | 1 | -7/+4 |
| | | | | | | | | | - operations on current index and node (next(), prev(), last(), first()) have been removed. - access to internal nodes has been removed. - old QList has been renamed to QInternalList for use inside qtools only. - added type safe compare, new, and delete operations (compareValues(), newValue(), deleteValue()). - add compareValues also to QDict for consistency. - changed doxygen's implementation to comply with the new QList and QDict interface. | ||||
* | More work on the template and context mechanisms | Dimitri van Heesch | 2013-12-29 | 1 | -0/+4 |
| | |||||
* | Added rudimentary support for django like template system for output creation. | Dimitri van Heesch | 2013-10-21 | 1 | -0/+2 |
| | |||||
* | Fixed a number of compiler warnings reported by newer clang compiler | Dimitri van Heesch | 2013-09-18 | 1 | -1/+0 |
| | |||||
* | Release-1.8.3.1-20130512 | Dimitri van Heesch | 2013-05-12 | 1 | -64/+66 |
| | |||||
* | Release-1.8.3.1-20130402 | Dimitri van Heesch | 2013-04-02 | 1 | -1/+2 |
| | |||||
* | Release-1.8.3.1 | Dimitri van Heesch | 2013-01-20 | 1 | -3/+3 |
| | |||||
* | Release-1.8.2-20121118 | Dimitri van Heesch | 2012-11-18 | 1 | -16/+10 |
| | |||||
* | Release-1.8.1.1 | Dimitri van Heesch | 2012-06-10 | 1 | -15/+13 |
| | |||||
* | Release-1.7.6.1-20120220 | Dimitri van Heesch | 2012-02-20 | 1 | -1/+1 |
| | |||||
* | Release-1.7.6.1-20111226 | Dimitri van Heesch | 2011-12-26 | 1 | -5/+2 |
| | |||||
* | Release-1.7.5.1-20111027 | Dimitri van Heesch | 2011-10-27 | 1 | -2/+4 |
| | |||||
* | Release-1.7.5.1-20110925 | Dimitri van Heesch | 2011-09-25 | 1 | -2/+4 |
| | |||||
* | Release-1.7.5 | Dimitri van Heesch | 2011-08-14 | 1 | -4/+4 |
| |