mirror of
https://github.com/zxing/zxing.git
synced 2024-11-10 04:54:04 -08:00
Syntax error in C++ builds under DEBUG. Closes issue 1105.
From evansepdx. I thought I fixed this a long time ago. Thanks! git-svn-id: https://zxing.googlecode.com/svn/trunk@2087 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
d7a9a8b96a
commit
f3f5720a8e
|
@ -54,8 +54,8 @@ namespace zxing {
|
||||||
|
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
cout << "(3) extracted points " << &points << "\n" << flush;
|
cout << "(3) extracted points " << &points << "\n" << flush;
|
||||||
cout << "found " << points->size() << " points:\n";
|
cout << "found " << points.size() << " points:\n";
|
||||||
for (size_t i = 0; i < points->size(); i++) {
|
for (size_t i = 0; i < points.size(); i++) {
|
||||||
cout << " " << points[i]->getX() << "," << points[i]->getY() << "\n";
|
cout << " " << points[i]->getX() << "," << points[i]->getY() << "\n";
|
||||||
}
|
}
|
||||||
cout << "bits:\n";
|
cout << "bits:\n";
|
||||||
|
|
Loading…
Reference in a new issue