Skip to content
Snippets Groups Projects
Commit 2a5c662e authored by callum_linden's avatar callum_linden
Browse files

Update to build on Xcode 6.0: initialization needs a default constructor

parent 48e8dab4
No related branches found
No related tags found
No related merge requests found
...@@ -199,6 +199,7 @@ class LLInvFVBridge : public LLFolderViewModelItemInventory ...@@ -199,6 +199,7 @@ class LLInvFVBridge : public LLFolderViewModelItemInventory
class LLInventoryFolderViewModelBuilder class LLInventoryFolderViewModelBuilder
{ {
public: public:
LLInventoryFolderViewModelBuilder() {}
virtual ~LLInventoryFolderViewModelBuilder() {} virtual ~LLInventoryFolderViewModelBuilder() {}
virtual LLInvFVBridge* createBridge(LLAssetType::EType asset_type, virtual LLInvFVBridge* createBridge(LLAssetType::EType asset_type,
LLAssetType::EType actual_asset_type, LLAssetType::EType actual_asset_type,
...@@ -653,6 +654,7 @@ class LLRecentItemsFolderBridge : public LLFolderBridge ...@@ -653,6 +654,7 @@ class LLRecentItemsFolderBridge : public LLFolderBridge
class LLRecentInventoryBridgeBuilder : public LLInventoryFolderViewModelBuilder class LLRecentInventoryBridgeBuilder : public LLInventoryFolderViewModelBuilder
{ {
public: public:
LLRecentInventoryBridgeBuilder() {}
// Overrides FolderBridge for Recent Inventory Panel. // Overrides FolderBridge for Recent Inventory Panel.
// It use base functionality for bridges other than FolderBridge. // It use base functionality for bridges other than FolderBridge.
virtual LLInvFVBridge* createBridge(LLAssetType::EType asset_type, virtual LLInvFVBridge* createBridge(LLAssetType::EType asset_type,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment