Sylvain Pion
|
c24c588aa5
|
Include <CGAL/algorithm.h> instead of <CGAL/copy_n.h>.
|
2008-08-12 12:58:18 +00:00 |
Sylvain Pion
|
847c23a15e
|
Removing leading and trailing empty lines from all example files.
Using the following Perl script:
-----------------------------------------------------
#!/usr/bin/perl
local($/) = undef;
my $text = <>;
$text =~ s/\A\n+//mg;
$text =~ s/\n+\Z/\n/mg;
print "$text";
-----------------------------------------------------
|
2007-03-10 16:17:17 +00:00 |
Sylvain Pion
|
6fb5cb906b
|
Remove trailing white spaces and end of lines.
(using : perl -pi.bak -e 's/\s+$/\n/' */examples/*/*.cpp )
|
2007-03-10 14:59:41 +00:00 |
Sylvain Pion
|
b8b87ab5a5
|
Actually, the "// file: example_bla.cpp" lines are not needed anymore,
since the manual tools know it. So let's just remove them (many were
not uptodate with the filemane anyway).
|
2007-03-10 14:48:00 +00:00 |
Sylvain Pion
|
01d46bfa15
|
Some examples escapede my previous pass due to trailing white space at end of line.
|
2007-03-10 14:39:37 +00:00 |
Andreas Fabri
|
499c4901e2
|
Removed prefix example_ from the examples files
|
2007-02-26 20:37:46 +00:00 |