Minor fixes

This commit is contained in:
orosmatthew 2023-10-05 13:03:08 -04:00
parent 59c2cd5a9c
commit 91496ac401

View File

@ -1,5 +1,4 @@
#include "html_render.hpp" #include "html_render.hpp"
#include <iostream>
namespace html { namespace html {
@ -12,7 +11,7 @@ void render_doc(const NodeDoc& doc, Bounds bounds, const raylib::Font& font)
} }
} }
void render_elem(const NodeElem& elem, Bounds bounds, const raylib::Font& font) void render_elem(const NodeElem& elem, Bounds bounds, const raylib::Font& font) // NOLINT(*-no-recursion)
{ {
if (const NodeElemReg* reg = std::get_if<NodeElemReg>(&elem.var)) { if (const NodeElemReg* reg = std::get_if<NodeElemReg>(&elem.var)) {
Utf8String inner_str; Utf8String inner_str;