Displaying 1 result from an estimated 1 matches for "401a43e".
Did you mean:
40143
2015 Aug 07
0
[PATCH] Fix const struct to work with C++ compilation
...s will be mangled,
so don't do that if you want to be able to call it from C code or run
the tests (which still require a C compiler).
---
src/analysis.c | 2 --
src/mlp.h | 2 ++
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/analysis.c b/src/analysis.c
index 2ee8533..401a43e 100644
--- a/src/analysis.c
+++ b/src/analysis.c
@@ -39,8 +39,6 @@
#include "mlp.h"
#include "stack_alloc.h"
-extern const MLP net;
-
#ifndef M_PI
#define M_PI 3.141592653
#endif
diff --git a/src/mlp.h b/src/mlp.h
index 053b23b..618e246 100644
--- a/src/mlp.h
+++ b/src/ml...