Skip to content

Commit

Permalink
remove debug printf's
Browse files Browse the repository at this point in the history
  • Loading branch information
Soeren Sonnenburg committed Nov 20, 2012
1 parent aa689b0 commit 63d4f32
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/shogun/lib/memory.cpp
Expand Up @@ -294,13 +294,11 @@ template<> void sg_generic_free<type >(type* ptr) \
#define SG_SPECIALIZED_MALLOC(type) \
template<> type* sg_generic_malloc<type >(size_t len) \
{ \
printf("new[]\n"); \
return new type[len](); \
} \
\
template<> type* sg_generic_calloc<type >(size_t len) \
{ \
printf("new[]\n"); \
return new type[len](); \
} \
\
Expand Down

0 comments on commit 63d4f32

Please sign in to comment.