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
One of the upstream dependencies I'm targeting uses a file named kafka-egress.proto, this generates a D file named kafka-egress.d with a module declaration module kafka-egress.d.
This won't compile in D as - is not valid in a module declaration.
I could rename the upstream file, but I'd rather not taint the sources.
Could protobuf-d be fixed to replace - with an underscore _ in both the generated filename and the module declaration?
The text was updated successfully, but these errors were encountered:
AndrejMitrovic
added a commit
to AndrejMitrovic/flink-statefun
that referenced
this issue
Jun 2, 2023
One of the upstream dependencies I'm targeting uses a file named
kafka-egress.proto
, this generates a D file namedkafka-egress.d
with a module declarationmodule kafka-egress.d
.This won't compile in D as
-
is not valid in a module declaration.I could rename the upstream file, but I'd rather not taint the sources.
Could
protobuf-d
be fixed to replace-
with an underscore_
in both the generated filename and the module declaration?The text was updated successfully, but these errors were encountered: