Skip to content

Commit

Permalink
Update to 1.68.
Browse files Browse the repository at this point in the history
  • Loading branch information
mellinoe committed Mar 13, 2019
1 parent dcb9b89 commit 4ef0abb
Show file tree
Hide file tree
Showing 17 changed files with 12,906 additions and 1,203 deletions.
Binary file modified deps/cimgui/linux-x64/cimgui.so
Binary file not shown.
Binary file modified deps/cimgui/osx-x64/cimgui.dylib
Binary file not shown.
Binary file modified deps/cimgui/win-x64/cimgui.dll
Binary file not shown.
Binary file modified deps/cimgui/win-x86/cimgui.dll
Binary file not shown.
3 changes: 2 additions & 1 deletion src/CodeGenerator/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -423,6 +423,7 @@ static void Main(string[] args)
{
string exportedName = overload.ExportedName;
if (exportedName.Contains("~")) { continue; }
if (exportedName.Contains("ImVector_")) { continue; }
if (overload.Parameters.Any(tr => tr.Type.Contains('('))) { continue; } // TODO: Parse function pointer parameters.

string ret = GetTypeString(overload.ReturnType, false);
Expand Down Expand Up @@ -1143,7 +1144,7 @@ class OverloadDefinition
DefaultValues = defaultValues;
ReturnType = returnType.Replace("const", string.Empty).Replace("inline", string.Empty).Trim();
StructName = structName;
IsMemberFunction = structName != "ImGui";
IsMemberFunction = !string.IsNullOrEmpty(structName);
Comment = comment;
}
}
Expand Down
Loading

0 comments on commit 4ef0abb

Please sign in to comment.