diff options
| author | callum_linden <none@none> | 2014-10-19 15:41:03 -0700 | 
|---|---|---|
| committer | callum_linden <none@none> | 2014-10-19 15:41:03 -0700 | 
| commit | 1f283b5bbbcc139bce747d81cef875f2cc1770a9 (patch) | |
| tree | 6399564aa327d7e5c45738d7378ed1cae03676a7 | |
| parent | df5fbad3fce36ce57659fda202b91bcb6cdb4050 (diff) | |
Update to build on Xcode 6.0: removal on unused variable(s) need more thought from Nat
| -rwxr-xr-x | indra/newview/lllogininstance.cpp | 10 | 
1 files changed, 4 insertions, 6 deletions
| diff --git a/indra/newview/lllogininstance.cpp b/indra/newview/lllogininstance.cpp index df59283bc4..03ef11d8e5 100755 --- a/indra/newview/lllogininstance.cpp +++ b/indra/newview/lllogininstance.cpp @@ -85,8 +85,7 @@ namespace {  		class ReadyToInstall;   		class StartingUpdaterService;  		class WaitingForDownload; -		 -		LLLoginInstance & mLoginInstance; +  		boost::scoped_ptr<State> mState;  		LLUpdaterService & mUpdaterService; @@ -145,7 +144,7 @@ namespace {  		virtual void exit(void);  	private: -		MandatoryUpdateMachine & mMachine; +		//MandatoryUpdateMachine & mMachine;  	}; @@ -193,7 +192,6 @@ std::string construct_start_string();  MandatoryUpdateMachine::MandatoryUpdateMachine(LLLoginInstance & loginInstance, LLUpdaterService & updaterService): -	mLoginInstance(loginInstance),  	mUpdaterService(updaterService)  {  	; // No op. @@ -349,8 +347,8 @@ void MandatoryUpdateMachine::Error::onButtonClicked(const LLSD &, const LLSD &)  //----------------------------------------------------------------------------- -MandatoryUpdateMachine::ReadyToInstall::ReadyToInstall(MandatoryUpdateMachine & machine): -	mMachine(machine) +MandatoryUpdateMachine::ReadyToInstall::ReadyToInstall(MandatoryUpdateMachine & machine) //: +	//mMachine(machine)  {  	; // No op.  } | 
