Cleanup: redundant parenthesis, NULL checks

This commit is contained in:
Campbell Barton
2020-04-20 12:08:29 +10:00
parent 9d3b1d361d
commit 2a96e8be39
4 changed files with 5 additions and 5 deletions

View File

@@ -29,7 +29,7 @@ typedef float (*DualConCo)[3];
typedef unsigned int (*DualConTri)[3];
typedef unsigned int(*DualConLoop);
typedef unsigned int *DualConLoop;
typedef struct DualConInput {
DualConLoop mloop;

View File

@@ -480,7 +480,7 @@ void Octree::trace()
if (chdpath != NULL) {
dc_printf("there are incomplete rings.\n");
printPaths(chdpath);
};
}
}
Node *Octree::trace(Node *newnode, int *st, int len, int depth, PathList *&paths)