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
GO files generated by the KS Compiler do not respect the standard header for generated GO files.
The header should match the pattern ^// Code generated .* DO NOT EDIT\.$, thus the header could be something like:
^// Code generated .* DO NOT EDIT\.$
// Code generated by kaitai-struct-compiler from a .ksy source file. DO NOT EDIT.
This (minor) bug can be fixed by adding the following line at the beginning of the GoCompiler class
GoCompiler
override val headerComment = "Code generated by kaitai-struct-compiler from a .ksy source file. DO NOT EDIT."
The text was updated successfully, but these errors were encountered:
kaitai-io/kaitai_struct_compiler@6e9a5c9
GoCompiler: fix header comment to match standard Go format
9f96b66
Fixes kaitai-io/kaitai_struct#847
No branches or pull requests
GO files generated by the KS Compiler do not respect the standard header for generated GO files.
The header should match the pattern
^// Code generated .* DO NOT EDIT\.$
, thus the header could be something like:// Code generated by kaitai-struct-compiler from a .ksy source file. DO NOT EDIT.
This (minor) bug can be fixed by adding the following line at the beginning of the
GoCompiler
classThe text was updated successfully, but these errors were encountered: