diff options
| author | callum_linden <none@none> | 2014-10-17 15:49:33 -0700 | 
|---|---|---|
| committer | callum_linden <none@none> | 2014-10-17 15:49:33 -0700 | 
| commit | d752550cc8d01b29dd8b58e688147acff10da33c (patch) | |
| tree | 317faecbec05d2767be67d07e615b213b7e13244 /indra | |
| parent | 2c78c1935f43465cf0ab38817999ce5a03bcb565 (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.h | 3 | 
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;  }; | 
