forked from boostorg/endian
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:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user