Skip to content
Snippets Groups Projects
Commit c94e7e07 authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'gcc9.AthenaMP-20190320' into 'master'

AthenaMP: Fix gcc9 warnings.

See merge request atlas/athena!22060
parents 227fe539 bd65203c
No related branches found
No related tags found
No related merge requests found
......@@ -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; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment