| 900 | } |
| 901 | |
| 902 | int BeDbgLoc::GetInlineDepth() |
| 903 | { |
| 904 | int inlineDepth = 0; |
| 905 | auto checkDbgLoc = mDbgInlinedAt; |
| 906 | while (checkDbgLoc != NULL) |
| 907 | { |
| 908 | inlineDepth++; |
| 909 | checkDbgLoc = checkDbgLoc->mDbgInlinedAt; |
| 910 | } |
| 911 | return inlineDepth; |
| 912 | } |
| 913 | |
| 914 | int BeDbgLoc::GetInlineMatchDepth(BeDbgLoc* other) |
| 915 | { |
no outgoing calls
no test coverage detected