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.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/strings/astring.hpp b/src/strings/astring.hpp
index b0fb196..7a569f9 100644
--- a/src/strings/astring.hpp
+++ b/src/strings/astring.hpp
@@ -33,6 +33,9 @@ namespace strings
/// The storage is NUL-terminated
class AString : public _crtp_string<AString, AString, ZPair>
{
+# ifdef __clang__
+ __attribute__((unused))
+# endif
RString *align[0];
char data[255];
unsigned char special;
@@ -83,6 +86,9 @@ namespace strings
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 &();
};