Salome HOME
Fix compilation error of b2e3b7ba5543af2
authorAnthony Geay <anthony.geay@edf.fr>
Thu, 22 Apr 2021 11:40:03 +0000 (13:40 +0200)
committerAnthony Geay <anthony.geay@edf.fr>
Thu, 22 Apr 2021 11:40:03 +0000 (13:40 +0200)
src/runtime/SALOME_NamingService_Wrapper.hxx

index af613d5cc08fc9a673eb190d085927e85a10d7c7..2ec484940963251a87e1c41b49e0b2a99066edb5 100644 (file)
@@ -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); }