summaryrefslogtreecommitdiff
path: root/src/strings/astring.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/strings/astring.hpp')
-rw-r--r--src/strings/astring.hpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/strings/astring.hpp b/src/strings/astring.hpp
index e936c4c..9e9adc2 100644
--- a/src/strings/astring.hpp
+++ b/src/strings/astring.hpp
@@ -76,21 +76,6 @@ namespace strings
__attribute__((format(printf, 2, 0)))
int do_vprint(AString& out, const char *fmt, va_list ap);
-
- class AStringConverter
- {
- AString& out;
- char *mid;
- public:
- AStringConverter(AString& s);
- // this usually gets elided, but multi dtor calls are fine anyway
- AStringConverter(const AStringConverter&) = default;
- AStringConverter& operator = (const AStringConverter&) = delete;
- ~AStringConverter();
- char **operator &();
- };
-
- AStringConverter convert_for_scanf(AString& s);
} // namespace strings
# include "astring.tcc"