Skip to content

Commit b6689e9

Browse files
committed
c# codegen: fix RemoteReducers ctor
1 parent 2287ae0 commit b6689e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/cli/src/subcommands/generate/csharp.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@ pub fn autogen_csharp_globals(ctx: &GenCtx, items: &[GenItem], namespace: &str)
648648
indented_block(&mut output, |output| {
649649
writeln!(
650650
output,
651-
"internal RemoteReducers(DbConnection conn) : base(conn) {{ this.SetCallReducerFlags = SetReducerFlags; }}"
651+
"internal RemoteReducers(DbConnection conn, SetReducerFlags SetReducerFlags) : base(conn) {{ this.SetCallReducerFlags = SetReducerFlags; }}"
652652
);
653653
writeln!(output, "internal readonly SetReducerFlags SetCallReducerFlags;");
654654

0 commit comments

Comments
 (0)