summaryrefslogtreecommitdiff
path: root/src/maps/mtools.tmpl
blob: dd3f89edf1be4a07e804a79f7301b5aa35a6c62b (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef MTOOLS_TMPL
#define MTOOLS_TMPL

template <class type_>
void
mtools<type_>::delete_obj( type_ type_obj ) {
  if ( type_obj )
   delete type_obj;
}

#endif