Start StringUtils, update build, add CLion config for code style.

This commit is contained in:
2023-10-14 17:56:26 -07:00
parent b28199553f
commit dd696e2c1f
19 changed files with 500 additions and 16 deletions

View File

@@ -2,7 +2,7 @@
#include <cstdlib>
#include "Dictionary.h"
#if defined(DESKTOP_BUILD)
#if defined(KLIB_DESKTOP_BUILD)
#include <iostream>
#endif
@@ -133,7 +133,7 @@ Dictionary::spaceAvailable(uint8_t klen, uint8_t vlen)
std::ostream &
operator<<(std::ostream &os, const Dictionary &dictionary)
{
#if defined(DESKTOP_BUILD)
#if defined(KLIB_DESKTOP_BUILD)
uint8_t *cursor = (dictionary.arena).NewCursor();
TLV::Record rec;