mirror of https://github.com/CGAL/cgal
- Removed unused variable in benchmark.C since this caused warnings
under GCC 3.2.
This commit is contained in:
parent
836d076bfb
commit
a2ad284d84
|
|
@ -122,7 +122,7 @@ int main(int,char **) {
|
|||
Minsphere mb(S.begin(),S.end());
|
||||
|
||||
// measure time:
|
||||
bool e = mb.is_empty();
|
||||
mb.is_empty();
|
||||
time = clock() - time;
|
||||
|
||||
// output running time:
|
||||
|
|
|
|||
|
|
@ -704,7 +704,7 @@ int main(int,char **) {
|
|||
Minsphere mb(S.begin(),S.end());
|
||||
|
||||
// measure time:
|
||||
bool e = mb.is_empty();
|
||||
mb.is_empty();
|
||||
time = clock() - time;
|
||||
|
||||
// output running time:
|
||||
|
|
|
|||
Loading…
Reference in New Issue