From: Pierre-Emmanuel Patry Date: Thu, 27 Apr 2023 08:09:01 +0000 (+0200) Subject: gccrs: libproc_macro: Change proc_macro.h to main header X-Git-Tag: basepoints/gcc-15~2594 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ba534efbc00a4d1b45aea57b8eb35c82fe007780;p=thirdparty%2Fgcc.git gccrs: libproc_macro: Change proc_macro.h to main header Add different include directives to the proc_macro header in order to create an handy header much alike rust-system. libgrust/ChangeLog: * libproc_macro/proc_macro.h: Add Literal, Punct, Group, TokenTree and Tokenstream headers. Signed-off-by: Pierre-Emmanuel Patry --- diff --git a/libgrust/libproc_macro/proc_macro.h b/libgrust/libproc_macro/proc_macro.h index cf96bb63cb26..5778098bd4b2 100644 --- a/libgrust/libproc_macro/proc_macro.h +++ b/libgrust/libproc_macro/proc_macro.h @@ -24,5 +24,10 @@ #define PROC_MACRO_H #include "literal.h" +#include "tokenstream.h" +#include "tokentree.h" +#include "group.h" +#include "punct.h" +#include "ident.h" #endif /* ! PROC_MACRO_H */