Remove obsolete config flag CGAL_CFG_NO_STDC_NAMESPACE and rename

its dependant macro CGAL_CLIB_STD to "std".
This commit is contained in:
Sylvain Pion
2007-08-08 15:59:25 +00:00
parent d76beea6ad
commit 4da7713aa8
79 changed files with 223 additions and 659 deletions
@@ -1,15 +0,0 @@
#!/usr/bin/perl -pi.bak -w
my @clib_names = (
'fabs', 'log', 'cos', 'sin', 'ceil', 'floor',
'abort', 'atoi',
'sscanf', 'sprintf',
'clock', 'clock_t',
'isalnum', 'isdigit', 'isspace',
'strlen', 'strcat','strcpy','strcmp');
foreach $name (@clib_names) {
s/\b(std|CGAL_CLIB_STD)::$name\b/$name/g;
s/\b$name\b/CGAL_CLIB_STD::$name/g;
}