diff options
author | Pierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com> | 2023-07-26 18:05:42 +0200 |
---|---|---|
committer | P-E-P <32375388+P-E-P@users.noreply.github.com> | 2023-07-27 12:25:20 +0000 |
commit | 851d83e34678c116f3ff99eddd453b675b87fa26 (patch) | |
tree | f6868d83b5c696f4dc952230baa7dc169bb56d76 | |
parent | 614f081a5e5dabdeef6ba5718aa7b3730f4e3fe7 (diff) | |
download | gcc-851d83e34678c116f3ff99eddd453b675b87fa26.zip gcc-851d83e34678c116f3ff99eddd453b675b87fa26.tar.gz gcc-851d83e34678c116f3ff99eddd453b675b87fa26.tar.bz2 |
proc_macro: Delete unused prototype
This function prototype was forgotten when the function was deleted.
ChangeLog:
* libgrust/libproc_macro/proc_macro.h (proc_macro_register_from_str):
Remove rogue function prototype.
Signed-off-by: Pierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com>
-rw-r--r-- | libgrust/libproc_macro/proc_macro.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libgrust/libproc_macro/proc_macro.h b/libgrust/libproc_macro/proc_macro.h index 60d9fcb..457ec46 100644 --- a/libgrust/libproc_macro/proc_macro.h +++ b/libgrust/libproc_macro/proc_macro.h @@ -62,9 +62,6 @@ struct Bang const char *name; BangMacro macro; }; - -void -proc_macro_register_from_str (ProcMacro::from_str_function_t fn); } enum ProcmacroTag |