Release 3.0.1

drop nullptr checking
This commit is contained in:
arcan1s
2015-10-23 00:20:30 +03:00
parent 2d9ca281a9
commit ac089dee9c
8 changed files with 37 additions and 31 deletions

View File

@ -81,6 +81,8 @@ for more details. To avoid manual labor there is automatic cmake target named
* Create one file (source and header) per class.
* `else if` construction is allowed and recommended.
* 'true ? foo : bar' construction is allowed and recommended for one-line assignment.
* any global pointer should be assign to `nullptr` after deletion and before
initialization. Exception: if object is deleted into class destructor.
Comments
--------
@ -101,7 +103,7 @@ Development
* Officially the latest libraries versions should be used. In addition it is
possible to add workarounds for all versions (usually by using preprocessor
directives).
directives); in this case patches should be placed to `packages` directory.
* Build should not contain any warning.
* Try to minimize message in Release build with logging disabled. It is highly
recommended to fix KDE/Qt specific warning if possible