Index: /issm/trunk-jpl/src/c/shared/Alloc/alloc.h
===================================================================
--- /issm/trunk-jpl/src/c/shared/Alloc/alloc.h	(revision 14889)
+++ /issm/trunk-jpl/src/c/shared/Alloc/alloc.h	(revision 14890)
@@ -13,3 +13,4 @@
 void xdelete(Matrix<IssmDouble>** pvptr);
 void xdelete(Vector<IssmDouble>** pvptr);
+
 #endif
Index: /issm/trunk-jpl/src/c/shared/Alloc/xNewDelete.h
===================================================================
--- /issm/trunk-jpl/src/c/shared/Alloc/xNewDelete.h	(revision 14889)
+++ /issm/trunk-jpl/src/c/shared/Alloc/xNewDelete.h	(revision 14890)
@@ -8,17 +8,13 @@
 #include <cassert>
 
-// memory management of types 
-// T with non-trivial constructors require 
-// C++ style memory management
+/* memory management of types T with non-trivial constructors require C++ style memory management*/
 #define USE_CXX_MEMORY_MANAGMENT_FOR_NON_POD_TYPES
-// but for speed on may alternatively use C memory management
-// but can do so safely only for T that are at most 
-// plain old data structures (POD)
+/* but for speed one may alternatively use C memory management but can do so safely only for T that are at most 
+ * plain old data structures (POD)*/
 #ifndef USE_CXX_MEMORY_MANAGMENT_FOR_NON_POD_TYPES
 #include <cstdlib>
 #endif 
 
-template <class T> 
-T* xNew(unsigned int size) {
+template <class T> T* xNew(unsigned int size) { /*{{{*/
 #ifdef USE_CXX_MEMORY_MANAGMENT_FOR_NON_POD_TYPES
   T* aT_p=new T[size];
@@ -30,8 +26,6 @@
   return aT_p;
 #endif  
-}
-
-template <class T> 
-T** xNew(unsigned int dim1, unsigned int dim2) {
+}/*}}}*/
+template <class T> T** xNew(unsigned int dim1, unsigned int dim2) { /*{{{*/
 #ifdef USE_CXX_MEMORY_MANAGMENT_FOR_NON_POD_TYPES
   T* buf=new T[dim1*dim2];
@@ -55,8 +49,6 @@
   return aT_pp ;
 #endif
-}
-
-template <class T>
-T* xNewZeroInit(unsigned int size) {
+}/*}}}*/
+template <class T> T* xNewZeroInit(unsigned int size) {/*{{{*/
 #ifdef USE_CXX_MEMORY_MANAGMENT_FOR_NON_POD_TYPES
   T* aT_p=xNew<T>(size);
@@ -69,8 +61,6 @@
   return aT_p;
 #endif
-}
-
-template <class T>
-T** xNewZeroInit(unsigned int dim1, unsigned int dim2) {
+}/*}}}*/
+template <class T> T** xNewZeroInit(unsigned int dim1, unsigned int dim2) {/*{{{*/
 #ifdef USE_CXX_MEMORY_MANAGMENT_FOR_NON_POD_TYPES
   T** aT_pp=xNew<T>(dim1,dim2);
@@ -89,8 +79,6 @@
   return aT_pp ;
 #endif
-}
-
-template <class T>
-void xDelete(T**& aT_pp) {
+}/*}}}*/
+template <class T> void xDelete(T**& aT_pp) {/*{{{*/
   if (aT_pp) {
 #ifdef USE_CXX_MEMORY_MANAGMENT_FOR_NON_POD_TYPES
@@ -103,8 +91,6 @@
   }
   aT_pp=0;
-}
-
-template <class T>
-void xDelete(T*& aT_p) {
+}/*}}}*/
+template <class T> void xDelete(T*& aT_p) {/*{{{*/
   if (aT_p) 
 #ifdef USE_CXX_MEMORY_MANAGMENT_FOR_NON_POD_TYPES
@@ -114,8 +100,6 @@
 #endif
   aT_p=0;
-}
-
-template <class T> 
-T* xReNew(T* old, unsigned int old_size, unsigned int size) {
+}/*}}}*/
+template <class T> T* xReNew(T* old, unsigned int old_size, unsigned int size) {/*{{{*/
 #ifdef USE_CXX_MEMORY_MANAGMENT_FOR_NON_POD_TYPES
 	T* aT_p=0;
@@ -150,5 +134,5 @@
 	return aT_p;
 #endif 
-}
+}/*}}}*/
 
 #endif
