From 6d378281a80dd1b748e18cdea59052a01bd09bf3 Mon Sep 17 00:00:00 2001 From: ZappoMan Date: Tue, 30 Apr 2013 10:24:13 -0700 Subject: [PATCH] cr cleaup - third times a charm? --- libraries/shared/src/SharedUtil.cpp | 7 +++---- libraries/shared/src/SharedUtil.h | 7 +++---- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/libraries/shared/src/SharedUtil.cpp b/libraries/shared/src/SharedUtil.cpp index 6410bcfa09..463bd2a339 100644 --- a/libraries/shared/src/SharedUtil.cpp +++ b/libraries/shared/src/SharedUtil.cpp @@ -377,10 +377,9 @@ void printVoxelCode(unsigned char* voxelCode) { // the second array is a sorted key for the value, the third array is the index for the value in it original // non-sorted array // returns -1 if size exceeded -int insertIntoSortedArrays( - void* value, float key, int originalIndex, - void** valueArray, float* keyArray, int* originalIndexArray, - int currentCount, int maxCount) { +int insertIntoSortedArrays(void* value, float key, int originalIndex, + void** valueArray, float* keyArray, int* originalIndexArray, + int currentCount, int maxCount) { if (currentCount < maxCount) { int i = 0; diff --git a/libraries/shared/src/SharedUtil.h b/libraries/shared/src/SharedUtil.h index 2b0c1d195b..1b40de5448 100644 --- a/libraries/shared/src/SharedUtil.h +++ b/libraries/shared/src/SharedUtil.h @@ -71,9 +71,8 @@ bool createVoxelEditMessage(unsigned char command, short int sequence, void usleep(int waitTime); #endif -int insertIntoSortedArrays( - void* value, float key, int originalIndex, - void** valueArray, float* keyArray, int* originalIndexArray, - int currentCount, int maxCount); +int insertIntoSortedArrays(void* value, float key, int originalIndex, + void** valueArray, float* keyArray, int* originalIndexArray, + int currentCount, int maxCount); #endif /* defined(__hifi__SharedUtil__) */