diff options
| -rw-r--r-- | indra/newview/CMakeLists.txt | 6 | ||||
| -rw-r--r-- | indra/newview/lltoastalertpanel.h | 2 | 
2 files changed, 7 insertions, 1 deletions
| diff --git a/indra/newview/CMakeLists.txt b/indra/newview/CMakeLists.txt index d6c8adfeab..1dbaa7437c 100644 --- a/indra/newview/CMakeLists.txt +++ b/indra/newview/CMakeLists.txt @@ -1936,6 +1936,12 @@ if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")  	set_source_files_properties(llappviewerlinux.cpp PROPERTIES  		COMPILE_FLAGS -Wno-dangling-gsl  	) +elseif (CMAKE_CXX_COMPILER_ID MATCHES "GNU") +	set_source_files_properties( +		llface.cpp +		llhttpretrypolicy.cpp +		llpanelface.cpp +		PROPERTIES COMPILE_FLAGS -Wno-maybe-uninitialized)  endif ()  if (LINUX) diff --git a/indra/newview/lltoastalertpanel.h b/indra/newview/lltoastalertpanel.h index bd34e40642..fc646e6ac2 100644 --- a/indra/newview/lltoastalertpanel.h +++ b/indra/newview/lltoastalertpanel.h @@ -86,7 +86,7 @@ private:  		: mWidth(0)  		{} -		LLButton* mButton; +		LLButton* mButton = nullptr;  		std::string mURL;  		U32 mURLExternal;  		S32 mWidth; | 
