| 739 | // ------------------------------------------------ |
| 740 | |
| 741 | int Int::GetLowestBit() { |
| 742 | |
| 743 | // Assume this!=0 |
| 744 | int b=0; |
| 745 | while(GetBit(b)==0) b++; |
| 746 | return b; |
| 747 | |
| 748 | } |
| 749 | |
| 750 | // ------------------------------------------------ |
| 751 |
nothing calls this directly
no outgoing calls
no test coverage detected