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

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

#endif