Replace tabs with spaces

This commit is contained in:
Giles Bathgate 2022-02-03 18:08:41 +00:00
parent 2663794269
commit 2527f17b17
1 changed files with 3 additions and 3 deletions

View File

@ -18,9 +18,9 @@
typedef CGAL::Simple_cartesian<int> Kernel;
struct Point_3 : Kernel::Point_3 {
using Kernel::Point_3::operator=;
Point_3() : Kernel::Point_3(0,0,0) {}
Point_3(int i) : Kernel::Point_3(i,0,0) {}
using Kernel::Point_3::operator=;
Point_3() : Kernel::Point_3(0,0,0) {}
Point_3(int i) : Kernel::Point_3(i,0,0) {}
};
typedef Kernel::Vector_3 Vector_3;