Commit 1141197803f38aefede3a9a9770b673d00b80a9e

  • avatar
  • dums <dums @01b27279-081b-0410…d9d9e0fb0389.>
  • Thu Sep 27 21:35:32 CEST 2007
  • Tree SHA1: 35dcdba
  • Parent SHA1: d63bf73 (Fix collate::do_transform, if low == high return empty string without invoking platform locale support.)
  • raw diff | raw patch
Removed useless __string_to_float declarations already declared in _num_get.h.

git-svn-id: https://stlport.svn.sourceforge.net/svnroot/stlport/branches/STLPORT_5_1/STLport@3204 01b27279-081b-0410-8cf9-d9d9e0fb0389
  
141141char* _STLP_CALL
142142__write_integer_backward(char* __buf, ios_base::fmtflags __flags, _Integer __x);
143143
144void _STLP_CALL __string_to_float(const string&, float&);
145void _STLP_CALL __string_to_float(const string&, double&);
146144/*
147145 * Returns the position on the right of the digits that has to be considered
148146 * for the application of the grouping policy.
149147 */
150148extern size_t _STLP_CALL __write_float(__iostring&, ios_base::fmtflags, int, double);
151149# if !defined (_STLP_NO_LONG_DOUBLE)
152void _STLP_CALL __string_to_float(const string&, long double&);
153150extern size_t _STLP_CALL __write_float(__iostring&, ios_base::fmtflags, int, long double);
154151# endif
155152