Skip to content

Commit a8475a2

Browse files
authored
Merge pull request #45 from BlumAmir/fix-comp-fields-order
fix: compilation warning on fields order in class Point
2 parents bd9894f + 64eb1e4 commit a8475a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/InfluxDbClient.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,9 @@ class Point {
9898
// Creates line protocol
9999
String toLineProtocol() const;
100100
protected:
101+
String _measurement;
101102
String _tags;
102103
String _fields;
103-
String _measurement;
104104
String _timestamp;
105105
// method for formating field into line protocol
106106
void putField(String name, String value);

0 commit comments

Comments
 (0)