X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;f=src%2Fbase%2Fcl_condition.cc;h=804cf96fbef1aa33598f93d6ac1b93c2c9dfdc84;hb=3ee7836238cee2466248f3ceedb8e033c726512e;hp=ac6e3bfee4a2586ca9c80069433119c1f941dd2a;hpb=dd9e0f894eec7e2a8cf85078330ddc0a6639090b;p=cln.git diff --git a/src/base/cl_condition.cc b/src/base/cl_condition.cc index ac6e3bf..804cf96 100644 --- a/src/base/cl_condition.cc +++ b/src/base/cl_condition.cc @@ -1,18 +1,19 @@ // Conditions. // General includes. -#include "cl_sysdep.h" +#include "base/cl_sysdep.h" // Specification. -#include "cl_condition.h" - +#include "cln/condition.h" // Implementation. +namespace cln { + // This tells the compiler to put the `cl_condition' vtable into this file. void cl_condition::dummy () {} // The destructor must be defined although it is virtual and abstract. -#if !(defined(__GNUC__) && (__GNUC__ == 2) && (__GNUC_MINOR__ < 8)) cl_condition::~cl_condition () {} -#endif + +} // namespace cln