Skip to content
Snippets Groups Projects
Commit 01cca733 authored by Nicolas Marsic's avatar Nicolas Marsic
Browse files

Fix missing #elif in ONELAB

parent fc4bb541
No related branches found
No related tags found
No related merge requests found
......@@ -107,9 +107,9 @@ class Msg {
static std::string GetExecutableName() { return _execName; }
static void LoadOnelabClient(const std::string &name, const std::string &sockName);
static GmshClient *GetGmshClient(){ return _client; }
#ifdef HAVE_ONELAB2
#if defined(HAVE_ONELAB2)
static GmshNetworkClient *GetOnelabClient(){ return _onelabClient; }
#else
#elif defined(HAVE_ONELAB)
static onelab::client *GetOnelabClient(){ return _onelabClient; }
#endif
static void FinalizeOnelab();
......
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