From 6d29773b3a284c6c78c34d15321a1b11f917d350 Mon Sep 17 00:00:00 2001 From: Oliver Hahn Date: Wed, 7 Aug 2013 14:11:28 +0200 Subject: [PATCH] fixed a compilation error in convex_hull.hh --- plugins/convex_hull.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/convex_hull.hh b/plugins/convex_hull.hh index cbc454a..2987a72 100644 --- a/plugins/convex_hull.hh +++ b/plugins/convex_hull.hh @@ -233,7 +233,7 @@ struct convex_hull{ return true; } - void expand_vector_from_centroid( real_t v, double dr ) + void expand_vector_from_centroid( real_t *v, double dr ) { double dx[3], d = 0.0; for( int i=0; i<3; ++i ) @@ -315,4 +315,4 @@ struct convex_hull{ }; -#endif // CONVEX_HULL_HH \ No newline at end of file +#endif // CONVEX_HULL_HH