diff options
author | callum_linden <none@none> | 2014-10-20 11:36:46 -0700 |
---|---|---|
committer | callum_linden <none@none> | 2014-10-20 11:36:46 -0700 |
commit | 784b8c4a4d1b1d372c2d1c172407ce937d9adc37 (patch) | |
tree | 842d17f5d223621899095575efc7290fbb791f53 /indra/newview | |
parent | c87185b7144e0265ef10d119f0c4c368f95a4fda (diff) |
Update to build on Xcode 6.0: clang demands a public default ctor
Diffstat (limited to 'indra/newview')
-rwxr-xr-x | indra/newview/llwearableitemslist.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llwearableitemslist.h b/indra/newview/llwearableitemslist.h index 58a00c5be0..c731a7d6cf 100755 --- a/indra/newview/llwearableitemslist.h +++ b/indra/newview/llwearableitemslist.h @@ -382,6 +382,10 @@ class LLWearableItemCreationDateComparator : public LLWearableItemNameComparator { LOG_CLASS(LLWearableItemCreationDateComparator); +public: + // clang demands a default ctor here + LLWearableItemCreationDateComparator() {} + protected: /*virtual*/ bool doCompare(const LLPanelInventoryListItemBase* item1, const LLPanelInventoryListItemBase* item2) const; }; |