Added comments

This commit is contained in:
Benoit Blanchon
2014-11-06 14:27:14 +01:00
parent ac9b776aa1
commit 6e67bc442f
7 changed files with 31 additions and 0 deletions

View File

@@ -11,6 +11,8 @@
namespace ArduinoJson {
namespace Internals {
// A node for a singly-linked list.
// Used by List<T> and its iterators.
template <typename T>
struct ListNode {
ListNode() : next(NULL) {}