| 10610 | enum Arch { Big, Little }; |
| 10611 | |
| 10612 | static Arch which() { |
| 10613 | union _{ |
| 10614 | int asInt; |
| 10615 | char asChar[sizeof (int)]; |
| 10616 | } u; |
| 10617 | |
| 10618 | u.asInt = 1; |
| 10619 | return ( u.asChar[sizeof(int)-1] == 1 ) ? Big : Little; |
| 10620 | } |
| 10621 | }; |
| 10622 | } |
| 10623 |
nothing calls this directly
no outgoing calls
no test coverage detected