Skip to content

Commit 740d030

Browse files
committed
fix merge
1 parent 9d4c607 commit 740d030

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

libraries/XMLWriter/XMLWriter.cpp

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -175,21 +175,12 @@ 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
179178
{
180179
writeNode(tag, (uint32_t) value, base);
181180
}
182181

183182
void XMLWriter::writeNode(char* tag, uint32_t value, uint8_t base)
184183
{
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
193184
tagOpen(tag, "", NONEWLINE);
194185
_stream->print(value, base);
195186
tagClose(NOINDENT);

0 commit comments

Comments
 (0)