Use .inc.h for #include files that not are plain headers

Regular .h files *should* be self-contained and independent of previous
includes and guarded to only include once. Make it clear which files
that *doesn't* apply for at all.
This commit is contained in:
Mads Kiilerich 2024-10-20 00:16:01 +02:00
parent 38db12c9ea
commit 140670541f
47 changed files with 105 additions and 102 deletions

View file

@ -24,7 +24,7 @@ namespace LuaSignal {
#define SESSION(name,c) name,
enum LuaSignal {
# include "luasignal_syms.h"
# include "luasignal_syms.inc.h"
LAST_SIGNAL
};