Added newline at ed of file

This commit is contained in:
Benoit Blanchon
2014-10-23 23:45:36 +02:00
parent e85f27c0f3
commit 55b0eab3e6
39 changed files with 44 additions and 39 deletions

View File

@ -27,4 +27,4 @@ class CompactJsonWriter : public JsonWriter {
virtual void endObject() { _length += _sink->write('}'); }
};
}
}
}

View File

@ -161,4 +161,4 @@ class JsonNode {
}
};
}
}
}

View File

@ -38,4 +38,4 @@ class JsonParser {
inline JsonNode *parseString();
};
}
}
}

View File

@ -57,4 +57,4 @@ class PrettyJsonWriter : public JsonWriter {
}
};
}
}
}

View File

@ -17,4 +17,4 @@ class QuotedString {
static char *extractFrom(char *input, char **end);
};
}
}
}

View File

@ -25,4 +25,4 @@ class StringBuilder : public Print {
int length;
};
}
}
}

View File

@ -32,4 +32,4 @@ class JsonArrayIterator {
private:
Internals::JsonNode *_node;
};
}
}

View File

@ -47,4 +47,4 @@ class JsonBuffer {
Internals::JsonNode *value);
Internals::JsonNode *createStringNode(const char *value);
};
}
}

View File

@ -49,4 +49,4 @@ class JsonContainer : public Printable, public Internals::JsonNodeWrapper {
void removeChild(Internals::JsonNode *);
Internals::JsonNode *createNode();
};
}
}

View File

@ -31,4 +31,4 @@ class JsonObject : public JsonContainer {
private:
Internals::JsonNode *getOrCreateNodeAt(const char *key);
};
}
}

View File

@ -38,4 +38,4 @@ class JsonObjectIterator {
private:
JsonObjectKeyValue _objectKeyValue;
};
}
}

View File

@ -30,4 +30,4 @@ class JsonObjectKeyValue {
private:
Internals::JsonNode *_node;
};
}
}

View File

@ -43,4 +43,4 @@ class JsonValue : public Internals::JsonNodeWrapper {
return static_cast<T>(*this);
}
};
}
}