Cosmetic change

This commit is contained in:
Laurent Rineau 2011-03-03 15:45:55 +00:00
parent 5ae2f38ef5
commit 728d10efc1
1 changed files with 1 additions and 1 deletions

View File

@ -19,5 +19,5 @@ for dirname, dirnames, filenames in os.walk(argv[1]):
fname=os.path.join(dirname, filename)
for lines in fileinput.FileInput(fname, inplace=1):
lines = lines.replace("CGAL_BEGIN_NAMESPACE","namespace CGAL {")
lines = lines.replace("CGAL_END_NAMESPACE","} //namespace CGAL")
lines = lines.replace("CGAL_END_NAMESPACE","} // end namespace CGAL")
print lines,