Minor fixes
This commit is contained in:
parent
59c2cd5a9c
commit
91496ac401
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user