summaryrefslogtreecommitdiffhomepage
path: root/cv
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2019-01-07 11:06:14 +0100
committerStanislaw Halik <sthalik@misaki.pl>2019-01-16 07:48:46 +0100
commitb6b1f969bcf0fe0b3551f01b90d41fab99372a99 (patch)
treee1aa979215bcdebbf8852da8ffcdd43424b700e5 /cv
parentb5cdedb08159655819e73bba0754ef36a5565e66 (diff)
cv/numeric: rename namespace
Diffstat (limited to 'cv')
-rw-r--r--cv/affine.hpp2
-rw-r--r--cv/numeric.hpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/cv/affine.hpp b/cv/affine.hpp
index 5d344138..882a1145 100644
--- a/cv/affine.hpp
+++ b/cv/affine.hpp
@@ -12,7 +12,7 @@
namespace affine_impl {
-using namespace types;
+using namespace numeric_types;
class Affine final
{
diff --git a/cv/numeric.hpp b/cv/numeric.hpp
index ee24331f..87fe7a69 100644
--- a/cv/numeric.hpp
+++ b/cv/numeric.hpp
@@ -3,7 +3,7 @@
#include <type_traits>
#include <opencv2/core.hpp>
-namespace types {
+namespace numeric_types {
using f = float;
static_assert(std::is_floating_point_v<f>);