فهرست منبع

Fixed compilation error on Clang 10

Benoit Blanchon 5 سال پیش
والد
کامیت
abd64102aa
2فایلهای تغییر یافته به همراه1 افزوده شده و 2 حذف شده
  1. 1 0
      CHANGELOG.md
  2. 0 2
      src/ArduinoJson/Json/JsonDeserializer.hpp

+ 1 - 0
CHANGELOG.md

@@ -7,6 +7,7 @@ HEAD
 * Made `JsonDocument`'s destructor protected (issue #1480)
 * Made `JsonDocument`'s destructor protected (issue #1480)
 * Added missing calls to `client.stop()` in `JsonHttpClient.ino` (issue #1485)
 * Added missing calls to `client.stop()` in `JsonHttpClient.ino` (issue #1485)
 * Fixed error `expected ')' before 'char'` when `isdigit()` is a macro (issue #1487)
 * Fixed error `expected ')' before 'char'` when `isdigit()` is a macro (issue #1487)
+* Fixed error `definition of implicit copy constructor is deprecated` on Clang 10
 
 
 v6.17.2 (2020-11-14)
 v6.17.2 (2020-11-14)
 -------
 -------

+ 0 - 2
src/ArduinoJson/Json/JsonDeserializer.hpp

@@ -42,8 +42,6 @@ class JsonDeserializer {
   }
   }
 
 
  private:
  private:
-  JsonDeserializer &operator=(const JsonDeserializer &);  // non-copiable
-
   char current() {
   char current() {
     return _latch.current();
     return _latch.current();
   }
   }