Please get rid of NON Ascii character from the code (Feature #1468)
Description
Hello all,
Please fix the bug below:
OpenCV/modules/core/src/cmdparser.cpp:1: error: stray '\357' in program
OpenCV/modules/core/src/cmdparser.cpp:1: error: stray '\273' in program
OpenCV/modules/core/src/cmdparser.cpp:1: error: stray '\277' in program
===================================================
The solution to fix the bug is to remove the non-ascii characters.
perl -i.bk -pe 's/[^[:ascii:]]//g;' OpenCV/modules/core/src/cmdparser.cpp
Regina
Associated revisions
removed non-ascii characters (ticket #1468)
Merge pull request #1468 from alalek:fix_alignSize_usage
History
Updated by Vadim Pisarevsky over 13 years ago
thanks! fixed in trunk (r6998)
- Status changed from Open to Done
- (deleted custom field) set to fixed
Updated by Andrey Kamaev almost 13 years ago
- Target version set to 2.4.0
- Category set to core