I'm trying to convert a little C program into C++. One of<br>my enumerated types gives an error when the file is compiled; the 'flush' in it is being redefined ( according<br>to the compiler ); here it is....<br><br>enum win_result { loss = 0, jacks_or_better = 1, <br> two_pair = 2, three_of_a_kind = 3,<br> straight = 4, flush = 5, full_house = 8,<br> four_of_kind = 25, straight_flush = 50,<br> royal_flush = 250 };