Skip to content
Snippets Groups Projects
Commit 0251030d authored by Jan David Mol's avatar Jan David Mol
Browse files

bug 1362: fixed cnproc gnu build

parent 3429b3cd
No related branches found
No related tags found
No related merge requests found
...@@ -93,6 +93,11 @@ void LocationInfo::print() const ...@@ -93,6 +93,11 @@ void LocationInfo::print() const
#else #else
unsigned LocationInfo::remapOnTree(unsigned pset, unsigned core) const
{
return core; // or pset?
}
void LocationInfo::print() const void LocationInfo::print() const
{ {
} }
......
...@@ -3,7 +3,6 @@ ...@@ -3,7 +3,6 @@
#include <vector> #include <vector>
#if defined HAVE_BGP
#if defined HAVE_MPI #if defined HAVE_MPI
// we do not need mpi.h here, but including it after bgp_personality.h leads // we do not need mpi.h here, but including it after bgp_personality.h leads
// to compilation errors // to compilation errors
...@@ -11,6 +10,7 @@ ...@@ -11,6 +10,7 @@
#include <mpi.h> #include <mpi.h>
#endif // HAVE_MPI #endif // HAVE_MPI
#if defined HAVE_BGP
#include <common/bgp_personality.h> #include <common/bgp_personality.h>
#endif // HAVE_BGP #endif // HAVE_BGP
...@@ -23,9 +23,7 @@ class LocationInfo ...@@ -23,9 +23,7 @@ class LocationInfo
public: public:
LocationInfo(); LocationInfo();
#if defined HAVE_BGP
unsigned remapOnTree(unsigned pset, unsigned core) const; unsigned remapOnTree(unsigned pset, unsigned core) const;
#endif
void print() const; void print() const;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment