tidy sources

This commit is contained in:
halx99 2019-11-28 02:02:15 +08:00
parent 60d8a663ab
commit 40661ea9fa
2 changed files with 1 additions and 3 deletions

View File

@ -5289,7 +5289,6 @@ namespace pugi
return impl::set_value_convert(_attr->value, _attr->header, impl::xml_memory_page_value_allocated_mask, rhs, precision);
}
template<> PUGI__FN bool xml_attribute::set_value<float>(float rhs)
{

View File

@ -762,8 +762,7 @@ namespace pugi
bool set(double rhs, int precision);
// Set text (equivalent to set without error checking)
template<typename _T>
xml_text& operator=(_T rhs) { set(rhs); return *this; }
template<typename _T> xml_text& operator=(_T rhs) { set(rhs); return *this; }
// Get the data node (node_pcdata or node_cdata) for this object
xml_node data() const;