Skip to content

Commit 5460233

Browse files
committed
merge solved
2 parents 8413c62 + 35b6713 commit 5460233

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

libraries/XMLWriter/XMLWriter.cpp

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,12 +175,21 @@ void XMLWriter::writeNode(char* tag, uint8_t value, uint8_t base)
175175
}
176176

177177
void XMLWriter::writeNode(char* tag, uint16_t value, uint8_t base)
178+
<<<<<<< HEAD
178179
{
179180
writeNode(tag, (uint32_t) value, base);
180181
}
181182

182183
void XMLWriter::writeNode(char* tag, uint32_t value, uint8_t base)
183184
{
185+
=======
186+
{
187+
writeNode(tag, (uint32_t) value, base);
188+
}
189+
190+
void XMLWriter::writeNode(char* tag, uint32_t value, uint8_t base)
191+
{
192+
>>>>>>> 35b6713f81bd68c64c2fc4ee7a9607716e0769ba
184193
tagOpen(tag, "", NONEWLINE);
185194
_stream->print(value, base);
186195
tagClose(NOINDENT);

0 commit comments

Comments
 (0)