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

github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'vowpalwabbit/memory.cc')
-rw-r--r--vowpalwabbit/memory.cc8
1 files changed, 0 insertions, 8 deletions
diff --git a/vowpalwabbit/memory.cc b/vowpalwabbit/memory.cc
deleted file mode 100644
index 7e40bf71..00000000
--- a/vowpalwabbit/memory.cc
+++ /dev/null
@@ -1,8 +0,0 @@
-#include <stdlib.h>
-
-void free_it(void* ptr)
-{
- if (ptr != NULL)
- free(ptr);
-}
-