summaryrefslogtreecommitdiff
path: root/flower
diff options
context:
space:
mode:
authorFrédéric Bron <frederic.bron@m4x.org>2013-08-23 17:44:26 +0200
committerDavid Kastrup <dak@gnu.org>2013-09-03 23:34:10 +0200
commit999595939c26d7f060ca73c6fd537248962942e0 (patch)
treefdac7dc9f8b9c214f34f5b9105c852723f6d5339 /flower
parent3fa19196fba43af5294c41dcb2cc62953de73c40 (diff)
Issue 3513: removed unused code: functions that are declared but never defined and stream.hh
Diffstat (limited to 'flower')
-rw-r--r--flower/include/string-convert.hh5
1 files changed, 0 insertions, 5 deletions
diff --git a/flower/include/string-convert.hh b/flower/include/string-convert.hh
index 148005672e..396eee2f91 100644
--- a/flower/include/string-convert.hh
+++ b/flower/include/string-convert.hh
@@ -21,10 +21,8 @@ class String_convert
public:
static string pad_to (string s, size_t length);
static string bool_string (bool b);
- static string bin2dec (string bin_string);
static string bin2hex (Byte bin_char);
static string bin2hex (string bin_string);
- static string dec2bin (string str);
static int bin2int (string bin_string);
static unsigned bin2unsigned (string bin_string);
static string char_string (char c, int n);
@@ -33,8 +31,6 @@ public:
static string double_string (double f, char const *fmt = 0);
static string form_string (char const *format, ...) __attribute__ ((format (printf, 1, 2)));
static string vform_string (char const *format, va_list args);
- static int hex2int (string str);
- static unsigned hex2unsigned (string str);
static string hex2bin (string str);
static string int_string (int i, char const *fmt = 0);
static string unsigned_string (unsigned);
@@ -46,7 +42,6 @@ public:
static string rational_string (Rational);
static string pointer_string (void const *);
static string precision_string (double x, int n);
- // static vector<string> split (string str, char c);
static string i64_string (I64, char const *fmt = 0);
static string to_lower (string s);
static string to_upper (string s);