Skip to content

Commit

Permalink
fix(nc): Add newline at the end of generated datatype definitions
Browse files Browse the repository at this point in the history
This led to build issues in the CI.
  • Loading branch information
jpfr committed Nov 29, 2024
1 parent 6d3d77f commit 6de2dc4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions include/open62541/util.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
#define UA_HELPER_H_

#include <open62541/types.h>
#include <open62541/types_generated.h>
#include <open62541/plugin/log.h>

_UA_BEGIN_DECLS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ def print_header(self):
self.printh('''
_UA_END_DECLS
#endif /* %s_GENERATED_H_ */''' % self.parser.outname.upper())
#endif /* %s_GENERATED_H_ */\n''' % self.parser.outname.upper())

def print_doc(self):
for ns in self.filtered_types:
Expand Down

0 comments on commit 6de2dc4

Please sign in to comment.