Use the definitions from (newer) upstream PEGTL. diff --git a/include/gemmi/cif.hpp b/include/gemmi/cif.hpp index c7ffdb44..35d24210 100644 --- a/include/gemmi/cif.hpp +++ b/include/gemmi/cif.hpp @@ -37,7 +37,6 @@ namespace pegtl = tao::pegtl; namespace rules { template struct lookup_char { - using analyze_t = pegtl::analysis::generic; template static bool match(Input& in) { if (!in.empty() && cif::char_table(in.peek_char()) == TableVal) { if (TableVal == 2) // this set includes new-line @@ -71,11 +70,11 @@ namespace rules { struct ws_or_eof : pegtl::sor {}; // (b) Reserved words. - struct str_data : TAOCPP_PEGTL_ISTRING("data_") {}; - struct str_loop : TAOCPP_PEGTL_ISTRING("loop_") {}; - struct str_global : TAOCPP_PEGTL_ISTRING("global_") {}; - struct str_save : TAOCPP_PEGTL_ISTRING("save_") {}; - struct str_stop : TAOCPP_PEGTL_ISTRING("stop_") {}; + struct str_data : TAO_PEGTL_ISTRING("data_") {}; + struct str_loop : TAO_PEGTL_ISTRING("loop_") {}; + struct str_global : TAO_PEGTL_ISTRING("global_") {}; + struct str_save : TAO_PEGTL_ISTRING("save_") {}; + struct str_stop : TAO_PEGTL_ISTRING("stop_") {}; struct keyword : pegtl::sor {}; x-modules.scm?id=43d528a532ca80193d16346b715aa7a620608d81'>commitdiff
uix.de.texi: Remove file. * doc/guix.es.texi: Remove file. * doc/guix.fr.texi: Remove file. * doc/guix.zh_CN.texi: Remove file. * .gitignore: Add them. Signed-off-by: Julien Lepiller <julien@lepiller.eu>
AgeCommit message (Expand)Author
2023-10-15linux-modules: Fix module dependency loading....* gnu/build/linux-modules.scm (dot-ko): Make COMPRESSION optional, as expected by callers RECURSIVE-MODULE-DEPENDENCIES and LOAD-LINUX-MODULE*. Tobias Geerinckx-Rice
2022-11-15linux-modules: Add 'load-pci-device-database'....* gnu/build/linux-modules.scm (read-pci-device-database) (load-pci-device-database): New procedures. Ludovic Courtès
2022-11-15linux-modules: Add support for listing PCI devices....* gnu/build/linux-modules.scm (<pci-device>): New record type. (pci-device-class-predicate, storage-pci-device?, network-pci-device?) (display-pci-device?, pci-devices?): New procedures. Ludovic Courtès
Miguel Ángel Arruga Vivas