fix lua::tovalue

This commit is contained in:
MihailRis 2025-09-28 22:27:50 +03:00
parent 6eda819011
commit ac7e7a4c2f

View File

@ -133,7 +133,6 @@ dv::value lua::tovalue(State* L, int idx) {
auto bytes = std::make_shared<dv::objects::Bytes>(
reinterpret_cast<const ubyte*>(data.data()), data.size()
);
pop(L);
return bytes;
}
}