Skip to content
Snippets Groups Projects
Commit aad4566c authored by Tuomas Karna's avatar Tuomas Karna
Browse files

dg: shallow water 3d update

parent 3538cbaf
No related branches found
No related tags found
No related merge requests found
......@@ -759,7 +759,7 @@ functionC::functionC (std::string file, std::string symbol, int nbCol,
dlHandler = dlopen(file.c_str(), RTLD_NOW);
callback = (void(*)(void))dlsym(dlHandler, symbol.c_str());
if(!callback)
Msg::Error("Cannot get the callback to the compiled C function");
Msg::Error("Cannot get the callback to the compiled C function: %s", symbol.c_str());
#else
Msg::Error("Cannot construct functionC without dlopen");
#endif
......
......@@ -23,9 +23,12 @@
#include "MPrism.h"
#include "MQuadrangle.h"
#include "MLine.h"
#include "MEdge.h"
#include "MFace.h"
#include "SVector3.h"
#include "SPoint3.h"
#include "SPoint2.h"
#include "SBoundingBox3d.h"
%}
namespace std {
......@@ -57,6 +60,9 @@ namespace std {
%include "MPrism.h"
%include "MQuadrangle.h"
%include "MLine.h"
%include "MEdge.h"
%include "MFace.h"
%include "SVector3.h"
%include "SPoint3.h"
%include "SPoint2.h"
%include "SBoundingBox3d.h"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment