Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix elwms include in python/octave/r interfaces
  • Loading branch information
Soeren Sonnenburg committed Oct 11, 2011
1 parent 5dd8dec commit dea9a1d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/interfaces/octave_static/OctaveInterface.cpp
Expand Up @@ -27,11 +27,11 @@
#include <shogun/base/init.h>

#ifdef HAVE_PYTHON
#include "../python/PythonInterface.h"
#include "../python_static/PythonInterface.h"
#endif

#ifdef HAVE_R
#include "../r/RInterface.h"
#include "../r_static/RInterface.h"
#undef length
#endif

Expand Down
4 changes: 2 additions & 2 deletions src/interfaces/python_static/PythonInterface.cpp
Expand Up @@ -9,11 +9,11 @@
#include <shogun/base/init.h>

#ifdef HAVE_OCTAVE
#include "../octave/OctaveInterface.h"
#include "../octave_static/OctaveInterface.h"
#endif

#ifdef HAVE_R
#include "../r/RInterface.h"
#include "../r_static/RInterface.h"
#endif

using namespace shogun;
Expand Down
4 changes: 2 additions & 2 deletions src/interfaces/r_static/RInterface.cpp
Expand Up @@ -20,11 +20,11 @@ extern "C" {
#include <shogun/base/init.h>

#ifdef HAVE_PYTHON
#include "../python/PythonInterface.h"
#include "../python_static/PythonInterface.h"
#endif

#ifdef HAVE_OCTAVE
#include "../octave/OctaveInterface.h"
#include "../octave_static/OctaveInterface.h"
#endif

void r_print_message(FILE* target, const char* str)
Expand Down

0 comments on commit dea9a1d

Please sign in to comment.