Browse Source

Fixed GCC warning

Benoit Blanchon 11 years ago
parent
commit
8560583ee7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      include/ArduinoJson/DynamicJsonBuffer.hpp

+ 1 - 1
include/ArduinoJson/DynamicJsonBuffer.hpp

@@ -60,8 +60,8 @@ class DynamicJsonBuffer : public JsonBuffer {
     return _next->alloc(bytes);
     return _next->alloc(bytes);
   }
   }
 
 
+  DynamicJsonBuffer* _next;
   size_t _size;
   size_t _size;
   uint8_t _buffer[BLOCK_CAPACITY];
   uint8_t _buffer[BLOCK_CAPACITY];
-  DynamicJsonBuffer* _next;
 };
 };
 }
 }