| 703 | // ------------------------------------------------ |
| 704 | |
| 705 | int Int::GetLowestBit() { |
| 706 | |
| 707 | // Assume this!=0 |
| 708 | int b=0; |
| 709 | while(GetBit(b)==0) b++; |
| 710 | return b; |
| 711 | |
| 712 | } |
| 713 | |
| 714 | // ------------------------------------------------ |
| 715 |
nothing calls this directly
no outgoing calls
no test coverage detected