From bd65203c2dfaecac986bbf49cfcd1d8d271ce09a Mon Sep 17 00:00:00 2001 From: scott snyder <scott.snyder@cern.ch> Date: Wed, 20 Mar 2019 14:35:44 +0100 Subject: [PATCH] AthenaMP: Fix gcc9 warnings. In C++11, implicit declarations of copy and assignment are deprecated if the class has a user defined destructor or copy or assignment. gcc9 now warns about this by default. Adjust to avoid the warning. --- Control/AthenaMP/src/memory-monitor/rapidjson/document.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Control/AthenaMP/src/memory-monitor/rapidjson/document.h b/Control/AthenaMP/src/memory-monitor/rapidjson/document.h index 2dce56c1c99..68166df10e4 100644 --- a/Control/AthenaMP/src/memory-monitor/rapidjson/document.h +++ b/Control/AthenaMP/src/memory-monitor/rapidjson/document.h @@ -325,6 +325,8 @@ struct GenericStringRef { GenericStringRef(const CharType* str, SizeType len) : s(str), length(len) { RAPIDJSON_ASSERT(s != NULL); } + GenericStringRef( const GenericStringRef& ) = default; + //! implicit conversion to plain CharType pointer operator const Ch *() const { return s; } -- GitLab