@@ -155,26 +155,6 @@ CI_API bool isAlpha( char c );
155155// ! returns whether character \a c is numeric (0-9)+(.+-eE). Not Unicode-aware.
156156CI_API bool isNumeric ( char c );
157157
158- // ! converts the value to a string without leading and trailing zeroes.
159- CI_API std::string valueToString ( int value );
160- // ! converts the value to a string without leading and trailing zeroes.
161- CI_API std::string valueToString ( unsigned value );
162- // ! converts the value to a string without leading and trailing zeroes.
163- CI_API std::string valueToString ( long value );
164- // ! converts the value to a string without leading and trailing zeroes.
165- CI_API std::string valueToString ( unsigned long value );
166- // ! converts the value to a string without leading and trailing zeroes.
167- CI_API std::string valueToString ( long long value );
168- // ! converts the value to a string without leading and trailing zeroes.
169- CI_API std::string valueToString ( unsigned long long value );
170- // ! converts the value to a string without leading and trailing zeroes.
171- CI_API std::string valueToString ( float value );
172- // ! converts the value to a string without leading and trailing zeroes.
173- CI_API std::string valueToString ( float value, int precision );
174- // ! converts the value to a string without leading and trailing zeroes.
175- CI_API std::string valueToString ( double value );
176- // ! converts the value to a string without leading and trailing zeroes.
177- CI_API std::string valueToString ( double value, int precision );
178158
179159// ! Returns a stack trace (aka backtrace) where \c stackTrace()[0] == caller, \c stackTrace()[1] == caller's parent, etc
180160CI_API std::vector<std::string> stackTrace ();
0 commit comments