nymea:krazy

Last commit made on 2017-10-11
Get this branch:
git clone -b krazy https://git.launchpad.net/nymea

Branch merges

Branch information

Name:
krazy
Repository:
lp:nymea

Recent commits

22e07e2... by Michael Zanetti

fix Krazy check doublequote_chars

Adding single characters to a QString is faster if the characters
are QChars and not QStrings. For example: QString path = oldpath +
"/" + base is better written as QString path = oldpath + '/' +
base. Same holds for arguments to QString::startsWith(),
QString::endsWith(), QString::remove(), QString::split(). Use
QString::remove() instead of QString::replace(foo,"")

1d5c23c... by Michael Zanetti

explicitly use more performant string classes

Some QString methods (like startsWith() and endsWith()) are more
efficient if they are passed a QLatin1String, avoiding an implicit
conversion from const char *.

68b81e3... by Michael Zanetti

fix system calls reported by krazy

4d1b793... by Michael Zanetti

fix krazy detected spelling errors

81550cc... by Michael Zanetti

change json rpc api version to have major & minor versions

5622a1a... by =?utf-8?q?Simon_St=C3=BCrz?= <email address hidden>

reenable debug output

7b2b652... by =?utf-8?q?Simon_St=C3=BCrz?= <email address hidden>

revert index in order to prevent lots of conflicts

3ad2d0f... by =?utf-8?q?Simon_St=C3=BCrz?= <email address hidden>

remove settings subdir

d04507e... by =?utf-8?q?Simon_St=C3=BCrz?= <email address hidden>

clean up debug outputs

c8e72f9... by =?utf-8?q?Simon_St=C3=BCrz?= <email address hidden>

add child evaluator tests