Browse Source

Fix TOML++ compilation with Clang-Cl toolchain (#2328)

Andrej Redeky 2 years ago
parent
commit
b623fd5c48
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/t/toml++/xmake.lua

+ 1 - 1
packages/t/toml++/xmake.lua

@@ -49,7 +49,7 @@ package("toml++")
                     cpp = 17
                 )"sv;
 
-                toml::table tbl = toml::parse(some_toml);
+                auto tbl = toml::parse(some_toml);
                 std::cout << tbl << "\n";
             }
         ]]}, {configs = {languages = "c++17"}, includes = "toml++/toml.h"}))