summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorcallum_linden <none@none>2014-10-17 15:49:33 -0700
committercallum_linden <none@none>2014-10-17 15:49:33 -0700
commitd752550cc8d01b29dd8b58e688147acff10da33c (patch)
tree317faecbec05d2767be67d07e615b213b7e13244 /indra
parent2c78c1935f43465cf0ab38817999ce5a03bcb565 (diff)
Update to build on Xcode 6.0: delete called on 'LLTranslationBridge' that is abstract but has non-virtual destructor [-Werror,-Wdelete-non-virtual-dtor]
Diffstat (limited to 'indra')
-rw-r--r--indra/llappearance/llwearabletype.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/llappearance/llwearabletype.h b/indra/llappearance/llwearabletype.h
index e51e6731d3..7c9594644d 100644
--- a/indra/llappearance/llwearabletype.h
+++ b/indra/llappearance/llwearabletype.h
@@ -35,6 +35,9 @@
class LLTranslationBridge
{
public:
+ // clang needs this to be happy
+ virtual ~LLTranslationBridge() {}
+
virtual std::string getString(const std::string &xml_desc) = 0;
};