]> Creatis software - crea.git/blobdiff - src/creaRTTI.cxx
#3374 crea Bug New Normal - vtk8itk5wx3-mingw64
[crea.git] / src / creaRTTI.cxx
index 635d9daddfcbd945ca0055bc841b2d7f0a2e62c1..872d64b7a0721080314442e2fdee3e5079b2293c 100644 (file)
@@ -62,44 +62,43 @@ namespace crea
                     << " to " << TypeName(target_type) << std::endl);
 
     void* target_pointer = 0;
-#if __GNUC__ > 3 ||                                    \
-  (__GNUC__ == 3 && (__GNUC_MINOR__ > 1 ||             \
-                    (__GNUC_MINOR__ == 1 &&            \
-                     __GNUC_PATCHLEVEL__ > 0)))
-    
-    const abi::__class_type_info* targetTI = 
-      (const abi::__class_type_info *)( &(target_type));
     
+  
+  
+//  #if __APPLE__
+//  //EED2018-08-28  Be careful  #include <typeinfo> is not complete  (CommandLine mechanisme Xcode)
+//  printf("EED creaRTTI  run_time_up_or_down_cast   2018-08-28 Warnning !!!!  Apple cast missing  __do_upcast   ");
+//     return source_pointer;
+//  #else
+ #if __GNUC__ > 3 ||                                   \
+   (__GNUC__ == 3 && (__GNUC_MINOR__ > 1 ||            \
+                    (__GNUC_MINOR__ == 1 &&            \
+                     __GNUC_PATCHLEVEL__ > 0)))    
+    const abi::__class_type_info* targetTI = (const abi::__class_type_info *)( &(target_type));
     creaDebugMessage("info",7," * source   = "<<source_pointer<<std::endl);
-
     void* tmp = source_pointer;
     if (source_type.__do_upcast(targetTI,&tmp))
-      {
-       target_pointer = tmp;
-      }
-    else 
-      {
-       creaDebugMessage("info",7,
-                        " * upcast failed : trying dynamic down cast"
-                        <<std::endl);
-       const abi::__class_type_info* sourceTI = 
-         (const abi::__class_type_info *)( &(source_type));
-       
-       
+    {
+               target_pointer = tmp;
+    } else {
+               creaDebugMessage("info",7, " * upcast failed : trying dynamic down cast" <<std::endl);
+               const abi::__class_type_info* sourceTI = (const abi::__class_type_info *)( &(source_type));
        target_pointer = abi::__dynamic_cast(source_pointer, 
                                             sourceTI, 
                                             targetTI, 
                                             -1);   
       }
-    
     creaDebugMessage("info",7," * target   = "<<target_pointer<<std::endl);
-    
-#else
+  #else
     creaWarning("run_time_up_or_down_cast not impl. on Win : to do");
     // target_pointer = __RTDynamicCast(source_pointer, 0, source_type, target_type, 0);
-#endif
+  #endif
     return target_pointer;
     
+//  #endif 
+
+    
   }
 
 }