mirror of
https://github.com/fmtlib/fmt.git
synced 2024-12-26 09:28:21 +00:00
Fix collision with global convert function (#425)
This commit is contained in:
parent
def687462c
commit
796beaaddb
@ -1155,7 +1155,9 @@ struct ConvertToIntImpl2<T, true> {
|
|||||||
|
|
||||||
template<typename T>
|
template<typename T>
|
||||||
struct ConvertToInt {
|
struct ConvertToInt {
|
||||||
enum { enable_conversion = sizeof(convert(get<T>())) == sizeof(Yes) };
|
enum {
|
||||||
|
enable_conversion = sizeof(fmt::internal::convert(get<T>())) == sizeof(Yes)
|
||||||
|
};
|
||||||
enum { value = ConvertToIntImpl2<T, enable_conversion>::value };
|
enum { value = ConvertToIntImpl2<T, enable_conversion>::value };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1653,3 +1653,11 @@ FMT_VARIADIC(void, custom_format, const char *)
|
|||||||
TEST(FormatTest, CustomArgFormatter) {
|
TEST(FormatTest, CustomArgFormatter) {
|
||||||
custom_format("{}", 42);
|
custom_format("{}", 42);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void convert(int);
|
||||||
|
|
||||||
|
// Check if there is no collision with convert function in the global namespace.
|
||||||
|
TEST(FormatTest, ConvertCollision) {
|
||||||
|
fmt::format("{}", 42);
|
||||||
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user