From a89f3bb9e57bace0e0ba1c36f6157035c2c18a72 Mon Sep 17 00:00:00 2001 From: matsukaze Date: Thu, 13 Feb 2014 11:23:50 -0500 Subject: [PATCH] Fixes for style conformance --- libraries/octree/src/Octree.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libraries/octree/src/Octree.h b/libraries/octree/src/Octree.h index 37534fdd7c..e0c7f414f8 100644 --- a/libraries/octree/src/Octree.h +++ b/libraries/octree/src/Octree.h @@ -208,12 +208,12 @@ public: OctreeElement* getOctreeElementAt(float x, float y, float z, float s) const; OctreeElement* getOrCreateChildElementAt(float x, float y, float z, float s); - void recurseTreeWithOperation(RecurseOctreeOperation operation, void* extraData=NULL); + void recurseTreeWithOperation(RecurseOctreeOperation operation, void* extraData = NULL); - void recurseTreeWithPostOperation(RecurseOctreeOperation operation, void* extraData=NULL); + void recurseTreeWithPostOperation(RecurseOctreeOperation operation, void* extraData = NULL); void recurseTreeWithOperationDistanceSorted(RecurseOctreeOperation operation, - const glm::vec3& point, void* extraData=NULL); + const glm::vec3& point, void* extraData = NULL); int encodeTreeBitstream(OctreeElement* node, OctreePacketData* packetData, OctreeElementBag& bag, EncodeBitstreamParams& params) ; @@ -257,8 +257,8 @@ public: void recurseNodeWithOperation(OctreeElement* node, RecurseOctreeOperation operation, void* extraData, int recursionCount = 0); - /** Traverse child nodes of node applying operation in post-fix order - */ + /// Traverse child nodes of node applying operation in post-fix order + /// void recurseNodeWithPostOperation(OctreeElement* node, RecurseOctreeOperation operation, void* extraData, int recursionCount = 0);