[MOAB-dev] r5948 - MOAB/trunk/src/lotte

vijaysm at mcs.anl.gov vijaysm at mcs.anl.gov
Tue Jan 22 12:37:02 CST 2013


Author: vijaysm
Date: 2013-01-22 12:37:01 -0600 (Tue, 22 Jan 2013)
New Revision: 5948

Modified:
   MOAB/trunk/src/lotte/poly.c
Log:
Removing a static keyword that got missed in the previous commit. Interesting this did not generate undefined errors on gcc-4.6.

Modified: MOAB/trunk/src/lotte/poly.c
===================================================================
--- MOAB/trunk/src/lotte/poly.c	2013-01-21 15:34:05 UTC (rev 5947)
+++ MOAB/trunk/src/lotte/poly.c	2013-01-22 18:37:01 UTC (rev 5948)
@@ -405,7 +405,7 @@
     p->D2[i]=p->w[i]*(p->u2[i]*p->v0[i]+2*p->u1[i]*p->v1[i]+p->u0[i]*p->v2[i]);
 }
 
-static void lagrange_2u(lagrange_data *p)
+void lagrange_2u(lagrange_data *p)
 {
   unsigned i,n=p->n;
   for(i=0  ; i<n-1; ++i)



More information about the moab-dev mailing list