remove unnecessary context brackets

This commit is contained in:
Andrew Meadows 2017-02-23 08:04:28 -08:00
parent 92a32b4651
commit 0657ca1e5e

View file

@ -2332,7 +2332,6 @@ void AvatarData::sortAvatars(
std::function<float(AvatarSharedPointer)> getBoundingRadius, std::function<float(AvatarSharedPointer)> getBoundingRadius,
std::function<bool(AvatarSharedPointer)> shouldIgnore) { std::function<bool(AvatarSharedPointer)> shouldIgnore) {
{
PROFILE_RANGE(simulation, "sort"); PROFILE_RANGE(simulation, "sort");
uint64_t now = usecTimestampNow(); uint64_t now = usecTimestampNow();
@ -2376,7 +2375,6 @@ void AvatarData::sortAvatars(
} }
sortedAvatarsOut.push(AvatarPriority(avatar, priority)); sortedAvatarsOut.push(AvatarPriority(avatar, priority));
} }
}
} }
QScriptValue AvatarEntityMapToScriptValue(QScriptEngine* engine, const AvatarEntityMap& value) { QScriptValue AvatarEntityMapToScriptValue(QScriptEngine* engine, const AvatarEntityMap& value) {