diff options
Diffstat (limited to 'mp/src/public/tier1/utlrbtree.h')
| -rw-r--r-- | mp/src/public/tier1/utlrbtree.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mp/src/public/tier1/utlrbtree.h b/mp/src/public/tier1/utlrbtree.h index b2665194..6ea22614 100644 --- a/mp/src/public/tier1/utlrbtree.h +++ b/mp/src/public/tier1/utlrbtree.h @@ -1350,7 +1350,7 @@ int CUtlRBTree<T, I, L, M>::Depth( I node ) const int depthright = Depth( RightChild(node) );
int depthleft = Depth( LeftChild(node) );
- return max(depthright, depthleft) + 1;
+ return Max(depthright, depthleft) + 1;
}
|