🔨 fixed warning about pointer members

parent 82b95ca6
...@@ -6807,10 +6807,6 @@ class basic_json ...@@ -6807,10 +6807,6 @@ class basic_json
*/ */
class serializer class serializer
{ {
private:
serializer(const serializer&) = delete;
serializer& operator=(const serializer&) = delete;
public: public:
/*! /*!
@param[in] s output stream to serialize to @param[in] s output stream to serialize to
...@@ -6823,6 +6819,10 @@ class basic_json ...@@ -6823,6 +6819,10 @@ class basic_json
indent_char(ichar), indent_string(512, indent_char) indent_char(ichar), indent_string(512, indent_char)
{} {}
// delete because of pointer members
serializer(const serializer&) = delete;
serializer& operator=(const serializer&) = delete;
/*! /*!
@brief internal implementation of the serialization function @brief internal implementation of the serialization function
...@@ -11182,6 +11182,10 @@ class basic_json ...@@ -11182,6 +11182,10 @@ class basic_json
: ia(adapter), decimal_point_char(get_decimal_point()) : ia(adapter), decimal_point_char(get_decimal_point())
{} {}
// delete because of pointer members
lexer(const lexer&) = delete;
lexer& operator=(lexer&) = delete;
private: private:
///////////////////// /////////////////////
// locales // locales
......
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment