Rename "runtime_conditional_reverse" to "conditional_reverse". The differing number of arguments is sufficient to disambiguate the compile-time and run-time overloads.

This commit is contained in:
Beman
2014-12-10 09:26:47 -05:00
parent 51b990eb50
commit 2cbcd6f7d3
4 changed files with 27 additions and 27 deletions
+1 -1
View File
@@ -73,7 +73,7 @@ int main(int, char* [])
conditional_reverse_in_place<order::little, order::big>(x);
cout << "(4) " << x.id() << ' ' << x.value() << ' ' << x.desc() << endl;
runtime_conditional_reverse_in_place(x, order::big, order::little);
conditional_reverse_in_place(x, order::big, order::little);
cout << "(5) " << x.id() << ' ' << x.value() << ' ' << x.desc() << endl;
}