Add files via upload

Fix issue #8280: "fastmath.h related compile errors with Embarcadero C++ Builder 10.1"
pull/8296/head
ville-v 8 years ago committed by GitHub
parent 78784040aa
commit 1de10f9f86
  1. 10
      modules/core/include/opencv2/core/fast_math.hpp

@ -54,12 +54,14 @@
* fast math *
\****************************************************************************************/
#if defined __BORLANDC__
# include <fastmath.h>
#elif defined __cplusplus
#ifdef __cplusplus
# include <cmath>
#else
# include <math.h>
# ifdef __BORLANDC__
# include <fastmath.h>
# else
# include <math.h>
# endif
#endif
#ifdef HAVE_TEGRA_OPTIMIZATION

Loading…
Cancel
Save