mirror of
https://github.com/opencv/opencv.git
synced 2025-08-06 14:36:36 +08:00
use #pragma message
instead of #warning
for non-GCC compilers
This commit is contained in:
parent
da6344297a
commit
8444470e3a
@ -31,7 +31,11 @@ namespace internal
|
||||
#if defined(__GXX_RTTI) || defined(_CPPRTTI)
|
||||
return dynamic_cast<T>(operand);
|
||||
#else
|
||||
#warning used static cast instead of dynamic because RTTI is disabled
|
||||
#ifdef __GNUC__
|
||||
#warning used static cast instead of dynamic because RTTI is disabled
|
||||
#else
|
||||
#pragma message("WARNING: used static cast instead of dynamic because RTTI is disabled")
|
||||
#endif
|
||||
return static_cast<T>(operand);
|
||||
#endif
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user