diff --git a/src/runtime/io.cpp b/src/runtime/io.cpp index d1c279ec7b..8a1c5860dc 100644 --- a/src/runtime/io.cpp +++ b/src/runtime/io.cpp @@ -355,7 +355,7 @@ extern "C" obj_res lean_io_ref_swap(b_obj_arg ref, obj_arg a, obj_arg) { } extern "C" obj_res lean_io_ref_ptr_eq(b_obj_arg ref1, b_obj_arg ref2, obj_arg) { - // TODO: ref_maybe_mt + // TODO(Leo): ref_maybe_mt bool r = ref1 == ref2; // lean_to_ref(ref1)->m_value == lean_to_ref(ref2)->m_value; return set_io_result(box(r)); }