]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
dynamic_log_messages: Fixed compilation errors because of forgotten semicolons after... kleontev/dynamic_log_messages
authorKonstantin LEONTEV <kleontev@ubuntu2004-01.nnov.opencascade.com>
Sat, 8 Oct 2022 15:59:46 +0000 (18:59 +0300)
committerKonstantin LEONTEV <kleontev@ubuntu2004-01.nnov.opencascade.com>
Sat, 8 Oct 2022 15:59:46 +0000 (18:59 +0300)
src/ModuleCatalog/SALOME_ModuleCatalog_Acomponent_impl.cxx
src/ModuleCatalog/SALOME_ModuleCatalog_Client.cxx
src/ModuleCatalog/SALOME_ModuleCatalog_Handler.cxx
src/NamingService/SALOME_NamingService.cxx
src/Registry/RegistryService.cxx
src/Registry/SALOME_Registry_Server.cxx
src/SALOMEDS/SALOMEDS_AttributeTreeNode_i.cxx
src/SALOMEDS/SALOMEDS_Client.cxx

index 877fa5458d8a92a660902a2329ceacf583ec7b4a..98fb903ab6516c9fdf347fbaf3ee95e9e6618541 100644 (file)
@@ -177,8 +177,8 @@ SALOME_ModuleCatalog_AcomponentImpl::GetServiceList(const char* interfacename)
           for (unsigned int ind1 = 0; ind1 < _length_services ; ind1++)
             {
               _list[ind1] = CORBA::string_dup(I.interfaceservicelist[ind1].ServiceName);
-              if(MYDEBUG) MESSAGE("The interface " << interfacename << " of the component " 
-                                  << _Component.name << " contains " << _list[ind1] << " as a service") 
+              MESSAGE("The interface " << interfacename << " of the component " 
+                                  << _Component.name << " contains " << _list[ind1] << " as a service");
             }
         }
     }
index f1c6c04a2df832599eadb2f696dbd533a45de3b3..eb76d3d1665f43ed1b3e467c71c4d3172eaccbdb 100644 (file)
@@ -62,7 +62,7 @@ int main(int argc,char **argv)
 
    SALOME_ModuleCatalog::ModuleCatalog_var Catalogue 
      = SALOME_ModuleCatalog::ModuleCatalog::_narrow(objVarN); 
-   MESSAGE("Distant catalog of component found")
+   MESSAGE("Distant catalog of component found");
 
      // Get component list
    SALOME_ModuleCatalog::ListOfComponents_var list_composants 
index 5eb66b8b595436af31e9502e89ab526f1a6ddd28..e3303f9e7aefdbb321138f476f9742ec44826486 100644 (file)
@@ -117,8 +117,8 @@ SALOME_ModuleCatalog_Handler::SALOME_ModuleCatalog_Handler(ParserPathPrefixes& p
 //----------------------------------------------------------------------
 SALOME_ModuleCatalog_Handler::~SALOME_ModuleCatalog_Handler()
 {
-  if(MYDEBUG) BEGIN_OF("~SALOME_ModuleCatalog_Handler()")
-  if(MYDEBUG) END_OF("~SALOME_ModuleCatalog_Handler()")
+  BEGIN_OF("~SALOME_ModuleCatalog_Handler()");
+  END_OF("~SALOME_ModuleCatalog_Handler()");
 }
 
 
index 1505f2e3ff191afa1fe9866062b5e44d1879b333..93408ff3fce58d8b8486b70f17707d78c3149ebe 100644 (file)
@@ -787,7 +787,7 @@ char *SALOME_NamingService::Current_Directory()
       path += splitPath[k];
     }
 
-  SCRUTE(path)
+  SCRUTE(path);
   _current_context = ref_context ;
 
   return strdup(path.c_str());
index c1d9762e35fbb49e880a766ea638fa68e6aef1b5..e0426758b3748cc919672bc9f7abde411ccafd56 100644 (file)
@@ -109,7 +109,7 @@ void RegistryService::remove( CORBA::ULong id)
         ASSERT(_SessionName) ;
         ASSERT(strlen(_SessionName)>0) ;
         
-        ASSERT(_reg.find(id)!=_reg.end()) 
+        ASSERT(_reg.find(id)!=_reg.end());
         _reg[id]->_status=TERMINATED;
         _reg[id]->_ts_end = (long)time(NULL) ; //!< TODO: conversation from time_t to long
 
@@ -131,7 +131,7 @@ void RegistryService::hello( CORBA::ULong id )
         ASSERT(_SessionName) ;
         ASSERT(strlen(_SessionName)>0) ;
 
-        ASSERT(_reg.find(id)!=_reg.end()) 
+        ASSERT(_reg.find(id)!=_reg.end()); 
         _reg[id]->_ts_hello = (long)time(NULL) ; //!< TODO: conversation from time_t to long
                 
         END_OF("RegistryService::hello") ;
index d4aaac8df7aa2a6beeb14a6c3135314390d62266..bc46f9a9ca2e4d9cbb3e213875106d85e1bc8910 100644 (file)
@@ -54,9 +54,9 @@ int main( int argc , char **argv )
   SetArgcArgv( argc, argv );
   CORBA::ORB_var orb = KERNEL::GetRefToORB();
   //  LocalTraceCollector *myThreadTrace = SALOMETraceCollector::instance(orb);
-  BEGIN_OF( argv[0] )
-    INFOS_COMPILATION 
-    SCRUTE(argc) 
+  BEGIN_OF( argv[0] );
+    INFOS_COMPILATION;
+    SCRUTE(argc);
     if( argc<3 )
       {
         MESSAGE("you must provide the Salome session name when you call SALOME_Registry_Server") ;
@@ -224,7 +224,7 @@ int main( int argc , char **argv )
     }
   catch( const SALOME_Exception &ex )
     {
-      MESSAGE( "Communication Error : " << ex.what() )
+      MESSAGE( "Communication Error : " << ex.what() );
         return EXIT_FAILURE ;
     }
         
index 5eef8c963359a7ec2806499a947fdd387425ddab..34c4047b397b64440783f9cda4bacfda8dc5eea1 100644 (file)
@@ -34,13 +34,13 @@ static SALOMEDSImpl_AttributeTreeNode* GetNode(SALOMEDS::AttributeTreeNode_ptr v
   SALOMEDSImpl_AttributeTreeNode* aResult = NULL;
   DF_Label aLabel = DF_Label::Label(aNode->Label(), value->Label());
   if (aLabel.IsNull()) {
-    MESSAGE("SALOMEDS_AttributeTreeNode_i class: no such label")
-    MESSAGE("SALOMEDS_AttributeTreeNode_i class: no such label")
+    MESSAGE("SALOMEDS_AttributeTreeNode_i class: no such label");
+    MESSAGE("SALOMEDS_AttributeTreeNode_i class: no such label");
     return aResult;
   }
   if (!(aResult=(SALOMEDSImpl_AttributeTreeNode*)aLabel.FindAttribute(aNode->ID()))) {
-    MESSAGE("SALOMEDS_AttributeTreeNode_i class: no such attribute")
-    MESSAGE("SALOMEDS_AttributeTreeNode_i class: no such attribute")
+    MESSAGE("SALOMEDS_AttributeTreeNode_i class: no such attribute");
+    MESSAGE("SALOMEDS_AttributeTreeNode_i class: no such attribute");
   }
   return aResult;
 }
index 3ef7d686dc8f4bfc835ea08ff5d8898a79952113..26c11a419481f5f09d8b7c48ef83fa85a6a0528d 100644 (file)
@@ -246,7 +246,7 @@ static void Test()
   }
   catch(HDFexception)
     {
-      MESSAGE( "HDFexception ! " )
+      MESSAGE("HDFexception ! ");
     } 
 }
 
@@ -275,19 +275,19 @@ int main(int argc, char** argv)
     orb->destroy();
   }
   catch(CORBA::SystemException&) {
-    MESSAGE("Caught CORBA::SystemException." )
+    MESSAGE("Caught CORBA::SystemException.");
   }
   catch(CORBA::Exception&) {
-    MESSAGE( "Caught CORBA::Exception." )
+    MESSAGE("Caught CORBA::Exception.");
   }
   catch(omniORB::fatalException& fe) { //!< TODO: unused variable
-    MESSAGE( "Caught omniORB::fatalException:" )
-    MESSAGE( "  file: " << fe.file() )
-    MESSAGE( "  line: " << fe.line() )
-    MESSAGE( "  mesg: " << fe.errmsg() )
+    MESSAGE("Caught omniORB::fatalException:");
+    MESSAGE("  file: " << fe.file());
+    MESSAGE("  line: " << fe.line());
+    MESSAGE("  mesg: " << fe.errmsg());
   }
   catch(...) {
-    MESSAGE( "Caught unknown exception." )
+    MESSAGE("Caught unknown exception.");
   }
   return 0;
 }