We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As reported at the flatbuffers Google Group (and pointed out at PR 172), the following schema:
namespace FLBSchemas; enum EColor : int { Red = 1, Green, Blue } table Generic { id:string (key); testColor:EColor = Red; } root_type Generic;
generates the following uncompilable C# code:
public static int CreateGeneric(FlatBufferBuilder builder, int id = 0, EColor testColor = 1) { //<-- error here
The text was updated successfully, but these errors were encountered:
A fix (+test) for this added at PR #253.
Sorry, something went wrong.
Fix was merged: #253
No branches or pull requests
As reported at the flatbuffers Google Group (and pointed out at PR 172), the following schema:
generates the following uncompilable C# code:
The text was updated successfully, but these errors were encountered: