Skip to content

Commit 58b8b3a

Browse files
Fix deprecations
1 parent d2c4808 commit 58b8b3a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/CVImgProc.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ cxx"""
2323
#include <opencv2/imgproc.hpp>
2424
"""
2525

26-
typealias ColorConversionCodes Cxx.CppEnum{Symbol("cv::ColorConversionCodes"),UInt32}
27-
typealias ThresholdTypes Cxx.CppEnum{Symbol("cv::ThresholdTypes"),UInt32}
28-
typealias BorderTypes Cxx.CppEnum{Symbol("cv::BorderTypes"),UInt32}
26+
const ColorConversionCodes = Cxx.CppEnum{Symbol("cv::ColorConversionCodes"),UInt32}
27+
const ThresholdTypes = Cxx.CppEnum{Symbol("cv::ThresholdTypes"),UInt32}
28+
const BorderTypes = Cxx.CppEnum{Symbol("cv::BorderTypes"),UInt32}
2929

3030
include("const.jl")
3131

0 commit comments

Comments
 (0)