Remove trailing whitespaces

This commit is contained in:
Laurent Rineau 2020-07-02 15:51:29 +02:00
parent 80dd558884
commit abd53906c5
2 changed files with 19 additions and 19 deletions

View File

@ -324,7 +324,7 @@ if( NOT CGAL_MACROS_FILE_INCLUDED )
endif() endif()
else() else()
if (NOT WITH_CGAL_${component}) if (NOT WITH_CGAL_${component})
message(STATUS "NOTICE: The CGAL_${component} library seems to be required but is not build. Thus, it is expected that some executables will not be compiled.") message(STATUS "NOTICE: The CGAL_${component} library seems to be required but is not build. Thus, it is expected that some executables will not be compiled.")
endif() endif()

View File

@ -258,7 +258,7 @@ EOF
print OUTPUT ' class="error"'; print OUTPUT ' class="error"';
} elsif ($resulttext eq 'r') { } elsif ($resulttext eq 'r') {
print OUTPUT ' class="requirements"'; print OUTPUT ' class="requirements"';
} }
else { else {
print OUTPUT ' class="na"'; print OUTPUT ' class="na"';
} }
@ -308,11 +308,11 @@ EOF
sub sort_pf sub sort_pf
{ {
# MSVS first # MSVS first
if($a =~ m/^MS/) { if($a =~ m/^MS/) {
if($b =~ m/^MS/) { if($b =~ m/^MS/) {
return $a cmp $b; return $a cmp $b;
} }
else else
{ {
return -1; return -1;
} }
@ -320,11 +320,11 @@ sub sort_pf
if($b =~ m/^MS/) { return 1; } if($b =~ m/^MS/) { return 1; }
# g++/gcc second # g++/gcc second
if($a =~ m/^g[c+][c+]/) { if($a =~ m/^g[c+][c+]/) {
if($b =~ m/^g[c+][c+]/) { if($b =~ m/^g[c+][c+]/) {
return $a cmp $b; return $a cmp $b;
} }
else else
{ {
return -1; return -1;
} }
@ -332,11 +332,11 @@ sub sort_pf
if($b =~ m/^g[c+][c+]/) { return 1; } if($b =~ m/^g[c+][c+]/) { return 1; }
# Intel third # Intel third
if($a =~ m/^[iI]/) { if($a =~ m/^[iI]/) {
if($b =~ m/^[iI]/) { if($b =~ m/^[iI]/) {
return $a cmp $b; return $a cmp $b;
} }
else else
{ {
return -1; return -1;
} }
@ -344,11 +344,11 @@ sub sort_pf
if($b =~ m/^[iI]/) { return 1; } if($b =~ m/^[iI]/) { return 1; }
# SunPro last # SunPro last
if($a =~ m/^[Ss][uU[Nn]/) { if($a =~ m/^[Ss][uU[Nn]/) {
if($b =~ m/^[Ss][uU[Nn]/) { if($b =~ m/^[Ss][uU[Nn]/) {
return $a cmp $b; return $a cmp $b;
} }
else else
{ {
return 1; return 1;
} }
@ -508,10 +508,10 @@ EOF
chomp; chomp;
print OUTPUT "</td>\n"; print OUTPUT "</td>\n";
print OUTPUT "<td><a href=\"mailto:$tester_address\">$tester_name</a></td>\n"; print OUTPUT "<td><a href=\"mailto:$tester_address\">$tester_name</a></td>\n";
print OUTPUT "<td>$county</td>\n"; print OUTPUT "<td>$county</td>\n";
print OUTPUT "<td>$countw</td>\n"; print OUTPUT "<td>$countw</td>\n";
print OUTPUT "<td>$countn</td>\n"; print OUTPUT "<td>$countn</td>\n";
print OUTPUT "<td>$countr</td>\n"; print OUTPUT "<td>$countr</td>\n";
$index = 8; $index = 8;
while ($index) { while ($index) {
$index--; $index--;
@ -520,7 +520,7 @@ EOF
print OUTPUT "<td align=\"center\">$_</td>\n"; print OUTPUT "<td align=\"center\">$_</td>\n";
} else { } else {
print OUTPUT "<td>$_</td>\n"; print OUTPUT "<td>$_</td>\n";
} }
} }
} else { } else {
print OUTPUT ">$pf_short</a>"; print OUTPUT ">$pf_short</a>";
@ -546,12 +546,12 @@ sub print_platforms_numbers()
{ {
$class = " class=\""; $class = " class=\"";
$tag = " ( "; $tag = " ( ";
if($platform_is_64bits{$platform}) { if($platform_is_64bits{$platform}) {
$class = "$class os64bits"; $class = "$class os64bits";
$tag = $tag . "64 bits "; $tag = $tag . "64 bits ";
} }
if($platform_is_optimized{$platform}) { if($platform_is_optimized{$platform}) {
$class = "$class highlight"; $class = "$class highlight";
$tag = $tag ." optimized: $platform_is_optimized{$platform}"; $tag = $tag ." optimized: $platform_is_optimized{$platform}";
} }
$class = $class . "\""; $class = $class . "\"";