From: Anthony Geay Date: Thu, 22 Apr 2021 11:40:03 +0000 (+0200) Subject: Fix compilation error of b2e3b7ba5543af2 X-Git-Tag: V9_8_0a1~18 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=eae5b8005d6c84e212f6a4e8b48543fb96968ae2;p=modules%2Fyacs.git Fix compilation error of b2e3b7ba5543af2 --- diff --git a/src/runtime/SALOME_NamingService_Wrapper.hxx b/src/runtime/SALOME_NamingService_Wrapper.hxx index af613d5cc..2ec484940 100644 --- a/src/runtime/SALOME_NamingService_Wrapper.hxx +++ b/src/runtime/SALOME_NamingService_Wrapper.hxx @@ -33,7 +33,7 @@ class SALOME_NamingService_Wrapper : public SALOME_NamingService_Abstract public: SALOME_NamingService_Wrapper(); SALOME_NamingService_Wrapper(CORBA::ORB_ptr orb); - std::string repr() override { return _effective_ns->repr(); } + std::vector< std::string > repr() override { return _effective_ns->repr(); } void init_orb(CORBA::ORB_ptr orb=0) override { _effective_ns->init_orb(orb); } void Register(CORBA::Object_ptr ObjRef, const char* Path) override { _effective_ns->Register(ObjRef,Path); } CORBA::Object_ptr Resolve(const char* Path) override { return _effective_ns->Resolve(Path); }