-
-
Notifications
You must be signed in to change notification settings - Fork 56.5k
Minor typing error in a clang macro name in cvdef.h #18597
Copy link
Copy link
Closed
Milestone
Description
System information (version)
- OpenCV => 4.5.0
- Operating System / Platform => All
- Compiler => clang
Detailed description
There is a minor typing error in:
| #elif defined __clang__ && (__clang_minor__ * 100 + __clang_major >= 305) |
The name __clang_major is not correct! It should be replaced with __clang_major__. See the reference documentation here: https://clang.llvm.org/docs/LanguageExtensions.html#builtin-macros
Reactions are currently unavailable