You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not sure if this is a bug. It looks like CppParser just excludes passing the -xc++ option to clang if ParseAsCpp is false. I think you can work around it for now by passing -xc or --language=c into AdditionalArguments.
var options = new CSharpConverterOptions();
options.AdditionalArguments.Add("--language=c");
Hello,
if the parser option ParseAsCpp is set to false, the compilation is always returned empty regardless of the input files or texts.
Is Parsing as C not supported?
The text was updated successfully, but these errors were encountered: