Welcome to mirror list, hosted at ThFree Co, Russian Federation.

memory.cc « vowpalwabbit - github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ea23597cbc003f4d6f41dc16dee7a5b43d431f99 (plain)
1
2
3
4
5
6
7
8
9
#include <stdlib.h>
#include <iostream>

void free_it(void*ptr)
{
  if (ptr != NULL)
    free(ptr);
}