generate-wire.py: Add scare comments to output.

Discourage developers from modifying files generated by generate-wire.py
This commit is contained in:
ZmnSCPxj
2018-01-10 22:44:37 +00:00
committed by Rusty Russell
parent ab0c26be91
commit fdbf2f41b4

View File

@@ -472,7 +472,9 @@ for line in fileinput.input(options.files):
prevfield = parts[2] prevfield = parts[2]
comments=[] comments=[]
header_template = """#ifndef LIGHTNING_{idem} header_template = """/* This file was generated by generate-wire.py */
/* Do not modify this file! Modify the _csv file it was generated from. */
#ifndef LIGHTNING_{idem}
#define LIGHTNING_{idem} #define LIGHTNING_{idem}
#include <ccan/tal/tal.h> #include <ccan/tal/tal.h>
#include <wire/wire.h> #include <wire/wire.h>
@@ -485,7 +487,9 @@ const char *{enumname}_name(int e);
#endif /* LIGHTNING_{idem} */ #endif /* LIGHTNING_{idem} */
""" """
impl_template = """#include <{headerfilename}> impl_template = """/* This file was generated by generate-wire.py */
/* Do not modify this file! Modify the _csv file it was generated from. */
#include <{headerfilename}>
#include <ccan/mem/mem.h> #include <ccan/mem/mem.h>
#include <ccan/tal/str/str.h> #include <ccan/tal/str/str.h>
#include <stdio.h> #include <stdio.h>