Changeset 40934 in vbox for trunk/src/VBox/Runtime/common/table
- Timestamp:
- Apr 16, 2012 5:53:05 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 77485
- Location:
- trunk/src/VBox/Runtime/common/table
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/table/avl_Base.cpp.h
r36555 r40934 118 118 # define KAVL_NULL 0 119 119 # else 120 # define KAVL_NULL NULL120 # define KAVL_NULL ((PKAVLNODECORE)0) 121 121 # endif 122 122 #endif … … 410 410 pDeleteNode = KAVL_GET_POINTER(ppDeleteNode); 411 411 else 412 return NULL;412 return KAVL_NULL; 413 413 414 414 kASSERT(AVLStack.cEntries < KAVL_MAX_STACK); -
trunk/src/VBox/Runtime/common/table/avl_Get.cpp.h
r36555 r40934 49 49 pNode = KAVL_GET_POINTER(&pNode->pLeft); 50 50 else 51 return NULL;51 return KAVL_NULL; 52 52 } 53 53 else … … 56 56 pNode = KAVL_GET_POINTER(&pNode->pRight); 57 57 else 58 return NULL;58 return KAVL_NULL; 59 59 } 60 60 } -
trunk/src/VBox/Runtime/common/table/avl_GetBestFit.cpp.h
r36555 r40934 47 47 if (pNode) 48 48 { 49 PKAVLNODECORE pNodeLast = NULL;49 PKAVLNODECORE pNodeLast = KAVL_NULL; 50 50 if (fAbove) 51 51 { /* pNode->Key >= Key */
Note:
See TracChangeset
for help on using the changeset viewer.