revert "fix" for issue with checkmarx. The tool should be fixed, not the code

This commit is contained in:
Kjell Hedström 2016-03-24 10:41:23 -06:00
parent 8df4eadd92
commit d01dfbf992

View File

@ -43,8 +43,9 @@ struct LEVELS {
}
friend void swap(LEVELS& first, LEVELS& second) {
std::swap(first.value, second.value);
std::swap(first.text, second.text);
using std::swap;
swap(first.value, second.value);
swap(first.text, second.text);
}