summaryrefslogtreecommitdiffstats
path: root/src/condparser.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Refactoring: remove implicit conversion from QCString to const char *Dimitri van Heesch2021-04-221-31/+8
| | | | | | | | | | | | | | | | | 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()'
* Refactor: modernize configuration valuesDimitri van Heesch2020-06-041-7/+9
|
* Enabled stricter compiler warnings and fixed all new warningsDimitri van Heesch2020-03-081-2/+1
|
* Coverity uninitializedalbert-github2019-12-021-1/+1
| | | | Fixing a number of uninitialized variables based on the coverity output of November 30, 2019
* Fixed logic errorDimitri van Heesch2018-07-211-1/+2
|
* Consistency between preprocessor and handling of \cond and \ifalbert-github2018-05-211-3/+3
| | | | Not all read characters in the preprocessor for the \con or \if were handled properly in de cond parser (most notably '-').
* Misc. typosluz.paz2018-04-251-1/+1
| | | | Found via `codespell`
* Misc. typosluzpaz2017-12-231-3/+3
| | | | | Super trivial typos Some are in qtools/ which I know is a 3rd party dependency but as we know is now obsolete upstream. I reckon it wouldn't be much of an issue to merge neverthless Tacked on several more commits
* Changed configuration mechanism to directly access options in order to ↵Dimitri van Heesch2016-01-171-1/+1
| | | | improve performance
* Bump copyright yearDimitri van Heesch2015-02-261-1/+1
|
* Updated copyrightDimitri van Heesch2014-02-111-1/+1
|
* Release-1.8.3.1-20130512Dimitri van Heesch2013-05-121-1/+1
|
* Release-1.8.3.1Dimitri van Heesch2013-01-201-1/+1
|
* Release-1.8.3Dimitri van Heesch2012-12-261-4/+7
|
* Release-1.8.2-20121118Dimitri van Heesch2012-11-181-0/+306