changeset 618:c5e909bd2e89

fix
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Fri, 29 May 2020 21:22:16 +0900
parents fca8f83f1611
children 3330001e7078
files src/parallel_execution/lib/Gears/Util.pm
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/parallel_execution/lib/Gears/Util.pm	Fri May 29 17:57:31 2020 +0900
+++ b/src/parallel_execution/lib/Gears/Util.pm	Fri May 29 21:22:16 2020 +0900
@@ -63,7 +63,7 @@
       next if $static_data_gear_write_mode;
       my $args = $';
       #$args eq  (Impl* vm, pde_t* pgdir, char* init, uint sz, __code next(...));
-      while ($args =~ /\s*(struct|union|const)?\s*([\w*\[\]_]+)\s*(\w+),?/g) {
+      while ($args =~ /\s*(struct|union|const|enum)?\s*([\w*\[\]_]+)\s*(\w+),?/g) {
         my $const_type = $1;
         my $type = $2;
         my $vname = $3;