From 2a5c662e46191a1af8b0f3ac919f45159bea0e79 Mon Sep 17 00:00:00 2001
From: callum_linden <none@none>
Date: Sun, 19 Oct 2014 17:18:05 -0700
Subject: [PATCH] Update to build on Xcode 6.0: initialization needs a default
 constructor

---
 indra/newview/llinventorybridge.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/indra/newview/llinventorybridge.h b/indra/newview/llinventorybridge.h
index 833fbbadbb0..2b27ff18622 100755
--- a/indra/newview/llinventorybridge.h
+++ b/indra/newview/llinventorybridge.h
@@ -199,6 +199,7 @@ class LLInvFVBridge : public LLFolderViewModelItemInventory
 class LLInventoryFolderViewModelBuilder
 {
 public:
+ 	LLInventoryFolderViewModelBuilder() {}
  	virtual ~LLInventoryFolderViewModelBuilder() {}
 	virtual LLInvFVBridge* createBridge(LLAssetType::EType asset_type,
 										LLAssetType::EType actual_asset_type,
@@ -653,6 +654,7 @@ class LLRecentItemsFolderBridge : public LLFolderBridge
 class LLRecentInventoryBridgeBuilder : public LLInventoryFolderViewModelBuilder
 {
 public:
+	LLRecentInventoryBridgeBuilder() {}
 	// Overrides FolderBridge for Recent Inventory Panel.
 	// It use base functionality for bridges other than FolderBridge.
 	virtual LLInvFVBridge* createBridge(LLAssetType::EType asset_type,
-- 
GitLab