[ox/mc] Fix an unwanted formatting "correction" from Visual Studio

This commit is contained in:
Gary Talent 2023-11-13 21:53:21 -06:00
parent 18ace3ceff
commit 8d2c8df014

View File

@ -249,7 +249,7 @@ constexpr Error MetalClawReaderTemplate<Reader>::field(const char*, HashMap<Stri
auto &handler = *reader.interface();
oxReturnError(handler.setTypeInfo("List", 0, {}, static_cast<std::size_t>(len)));
// this loop body needs to be in a lambda because of the potential alloca call
constexpr auto loopBody = [](auto& handler, auto &val) {
constexpr auto loopBody = [](auto &handler, auto &val) {
oxRequire(keyLen, handler.stringLength(nullptr));
auto wkey = ox_malloca(keyLen + 1, char, 0);
auto wkeyPtr = wkey.get();