moved nodeNumberValue so gcc sees it properly

This commit is contained in:
jez_higgins 2005-08-25 11:30:23 +00:00
parent a07a9521e0
commit caa8ef5d1b

View file

@ -295,12 +295,6 @@ double stringAsNumber(const string_type& str)
} // catch } // catch
} // stringAsNumber } // stringAsNumber
template<class string_type, class string_adaptor>
double nodeNumberValue(const DOM::Node<string_type>& node)
{
return stringAsNumber(nodeStringValue<string_type, string_adaptor>(node));
} // nodeNumberValue
template<class string_type, class string_adaptor> template<class string_type, class string_adaptor>
string_type nodeStringValue(const DOM::Node<string_type>& node) string_type nodeStringValue(const DOM::Node<string_type>& node)
{ {
@ -334,6 +328,12 @@ string_type nodeStringValue(const DOM::Node<string_type>& node)
} // switch } // switch
} // nodeStringValue } // nodeStringValue
template<class string_type, class string_adaptor>
double nodeNumberValue(const DOM::Node<string_type>& node)
{
return stringAsNumber(nodeStringValue<string_type, string_adaptor>(node));
} // nodeNumberValue
} // namespace impl } // namespace impl
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////