mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
enable_if_t isn't a thing in C++11
This commit is contained in:
parent
504fed3585
commit
f1042c5119
|
@ -172,7 +172,7 @@ private:
|
|||
|
||||
// std::string attribute name
|
||||
// not integer or float type
|
||||
template <typename T, typename = std::enable_if_t<!std::is_convertible_v<T, double>>>
|
||||
template <typename T, typename = std::enable_if<!std::is_convertible_v<T, double>>::type>
|
||||
void write_attribute(const std::string &name, T value)
|
||||
{
|
||||
current_part_serializer_->attribute(name, value);
|
||||
|
@ -185,7 +185,7 @@ private:
|
|||
|
||||
// qname attribute name
|
||||
// not integer or float type
|
||||
template <typename T, typename = std::enable_if_t<!std::is_convertible_v<T, double>>>
|
||||
template <typename T, typename = std::enable_if<!std::is_convertible_v<T, double>>::type>
|
||||
void write_attribute(const xml::qname &name, T value)
|
||||
{
|
||||
current_part_serializer_->attribute(name, value);
|
||||
|
|
Loading…
Reference in New Issue
Block a user