mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 02:23:57 +02:00
added space between expressions in ternary operator
This commit is contained in:
parent
becbd343c3
commit
f0cb49ef5c
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ QVariantMap HifiConfigVariantMap::mergeCLParametersWithJSONConfig(const QStringL
|
|||
// this option is simply a switch, so add it to the map with a value of `true`
|
||||
mergedMap.insertMulti(key, QVariant(true));
|
||||
} else {
|
||||
int maxIndex = (nextKeyIndex == -1) ? argumentList.size(): nextKeyIndex;
|
||||
int maxIndex = (nextKeyIndex == -1) ? argumentList.size() : nextKeyIndex;
|
||||
|
||||
// there's at least one value associated with the option
|
||||
// pull the first value to start
|
||||
|
|
Loading…
Reference in a new issue