summaryrefslogtreecommitdiffstats
path: root/src/symbolresolver.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' into feature/bug_305773Dimitri van Heesch2021-04-291-54/+54
|\
| * Refactoring: remove implicit conversion from QCString to const char *Dimitri van Heesch2021-04-221-55/+55
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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()'
| * Refactoring: replace QRegExp by std::regex in util.cppDimitri van Heesch2021-02-201-1/+1
| |
* | bug_305773 Volatile declaration is missing for variables in XML outputalbert-github2021-01-131-0/+1
|/ | | | Handle "const" and "volatile" in the same way, they are bit cv-qualifiers
* Refactoring: replacing dynamic_cast by static_cast to improve performanceDimitri van Heesch2020-11-131-14/+14
|
* Refactoring: Introduce immutable and mutable interfacesDimitri van Heesch2020-11-091-1/+5
| | | | | | 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() methodDimitri van Heesch2020-11-011-52/+35
|
* Refactoring: modernize getUsedClasses() methodDimitri van Heesch2020-10-291-42/+20
|
* Refactoring: introduce SymbolResolver to group symbol lookup routinesDimitri van Heesch2020-10-281-0/+1149
- Main goal was to avoid use of global state.