Skip to content

Commit

Permalink
Remove warning, move collection tests to SimpleCollections
Browse files Browse the repository at this point in the history
  • Loading branch information
davetcc committed Feb 6, 2022
1 parent 807cd8c commit ebf8680
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 183 deletions.
2 changes: 1 addition & 1 deletion src/IoLogging.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ inline void serdebugHexDump(const char *title, const void* data, size_t strlen)
LoggingPort.println();

const auto str = (const uint8_t *) data;
for (int ii = 0; ii < strlen; ii++) {
for (size_t ii = 0; ii < strlen; ii++) {
LoggingPort.print((int) str[ii], HEX);
LoggingPort.print(((ii % 8) == 7) ? '\n' : ' ');
};
Expand Down
182 changes: 0 additions & 182 deletions tests/ioaCoreTests/SimpleCollectionsTest.cpp

This file was deleted.

0 comments on commit ebf8680

Please sign in to comment.