summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorandreykproductengine <andreykproductengine@lindenlab.com>2019-08-12 20:35:27 +0300
committerandreykproductengine <andreykproductengine@lindenlab.com>2019-08-12 20:35:27 +0300
commitb6a3901c2fd9a2866625f63b4b09a50d727cca34 (patch)
tree5aa88188c4bcfd085e82fdefc5b351e175d2748b /indra/newview
parentd6030c7376b930d0bfc40c29ec9888e3db851c06 (diff)
parent98be6e141c1232bad28cc115bc7092f175b18809 (diff)
Merge from nat_linden/drtvwr-493
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/CMakeLists.txt8
-rw-r--r--indra/newview/llconversationlog.h2
2 files changed, 7 insertions, 3 deletions
diff --git a/indra/newview/CMakeLists.txt b/indra/newview/CMakeLists.txt
index 766dc5226c..c18b2c9a95 100644
--- a/indra/newview/CMakeLists.txt
+++ b/indra/newview/CMakeLists.txt
@@ -1381,8 +1381,12 @@ if (DARWIN)
PROPERTIES
COMPILE_DEFINITIONS "${VIEWER_CHANNEL_VERSION_DEFINES}"
# BugsplatMac is a module, imported with @import. That language feature
- # demands these switches.
- COMPILE_FLAGS "-fmodules -fcxx-modules"
+ # demands these -f switches.
+ # Xcode 10.2 requires that Objective-C++ headers declare nullability of
+ # pointer variables. As of 2019-06-26, the BugsplatMac version we're using
+ # does not yet do so in its own header files. This -W flag prevents fatal
+ # warnings.
+ COMPILE_FLAGS "-fmodules -fcxx-modules -Wno-nullability-completeness"
)
find_library(AGL_LIBRARY AGL)
diff --git a/indra/newview/llconversationlog.h b/indra/newview/llconversationlog.h
index 38247f8eff..f241276abb 100644
--- a/indra/newview/llconversationlog.h
+++ b/indra/newview/llconversationlog.h
@@ -109,7 +109,7 @@ private:
class LLConversationLog : public LLParamSingleton<LLConversationLog>, LLIMSessionObserver
{
- LLPARAMSINGLETON(LLConversationLog);
+ LLSINGLETON(LLConversationLog);
public:
void removeConversation(const LLConversation& conversation);