From 14bb3a6f14c9660508298f56af28e7889848634c Mon Sep 17 00:00:00 2001 From: jeaye Date: Mon, 15 Jul 2024 18:12:28 -0700 Subject: [PATCH] Add a char todo --- compiler+runtime/src/cpp/jank/runtime/obj/character.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler+runtime/src/cpp/jank/runtime/obj/character.cpp b/compiler+runtime/src/cpp/jank/runtime/obj/character.cpp index 2d6f8148d..355fbfef0 100644 --- a/compiler+runtime/src/cpp/jank/runtime/obj/character.cpp +++ b/compiler+runtime/src/cpp/jank/runtime/obj/character.cpp @@ -80,6 +80,7 @@ namespace jank::runtime void obj::character::to_string(fmt::memory_buffer &buff) const { + /* TODO: This is actually to_representation, since the string version of \a is just a. */ fmt::format_to(std::back_inserter(buff), "{}", data); }