1
0
Fork 0
mirror of https://github.com/cosmo-sims/MUSIC.git synced 2024-09-19 17:03:46 +02:00

fixed a compilation error in convex_hull.hh

This commit is contained in:
Oliver Hahn 2013-08-07 14:11:28 +02:00
parent a0f6dc2ba2
commit 6d29773b3a

View file

@ -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
#endif // CONVEX_HULL_HH