mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-27 01:45:35 -05:00
fix bindinggen breaking
This commit is contained in:
parent
a385cd2d5e
commit
9b1155e352
1 changed files with 2 additions and 2 deletions
|
@ -195,8 +195,6 @@ std::string generateBindingHeader(Root& root, ghc::filesystem::path const& singl
|
|||
|
||||
std::string addressDocs;
|
||||
|
||||
std::string docs = generateDocs(fb->docs);
|
||||
|
||||
if (auto i = field.get_as<InlineField>()) {
|
||||
single_output += "\t" + i->inner + "\n";
|
||||
continue;
|
||||
|
@ -236,6 +234,8 @@ std::string generateBindingHeader(Root& root, ghc::filesystem::path const& singl
|
|||
addressDocs = generateAddressDocs(field, fn);
|
||||
}
|
||||
|
||||
std::string docs = generateDocs(fb->docs);
|
||||
|
||||
single_output += fmt::format(used_format,
|
||||
fmt::arg("virtual", str_if("virtual ", fb->is_virtual)),
|
||||
fmt::arg("static", str_if("static ", fb->is_static)),
|
||||
|
|
Loading…
Reference in a new issue