fix_headers_art206.pl
Go to the documentation of this file.
1 use strict;
2 
3 use vars qw(%subdir_list);
4 use vars qw(%header_list);
5 
6 # explicit headers to avoid conflicts with experiment code
7 BEGIN { %header_list = (
8 "cetlib/demangle.h" => "cetlib_except/demangle.h"
9  ); }
10 
11 foreach my $inc (sort keys %header_list) {
12  s&^(\s*#include\s+["<])\Q$inc\E(.*)&${1}$header_list{$inc}${2}& and last;
13 }