summaryrefslogtreecommitdiff
path: root/utils/array2d.h
diff options
context:
space:
mode:
authorChris Dyer <cdyer@cs.cmu.edu>2012-05-16 07:09:16 -0400
committerChris Dyer <cdyer@cs.cmu.edu>2012-05-16 07:09:16 -0400
commita448faf30fa46c006b1d38c6aee64a7aad29ac5e (patch)
treebdfe7c401de04433e80680e350b05ad4d37b7e59 /utils/array2d.h
parent0f1e696690b18259acd79c3469d00a72aca00161 (diff)
clean up
Diffstat (limited to 'utils/array2d.h')
-rw-r--r--utils/array2d.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/array2d.h b/utils/array2d.h
index e63eda0d..ee2600d2 100644
--- a/utils/array2d.h
+++ b/utils/array2d.h
@@ -155,7 +155,7 @@ inline std::ostream& operator<<(std::ostream& os, const Array2D<std::vector<bool
os << (i%10);
for (int j=0; j<m.height(); ++j) {
const std::vector<bool>& ar = m(i,j);
- for (int k=0; k<ar.size(); ++k)
+ for (unsigned k=0; k<ar.size(); ++k)
os << (ar[k] ? '*' : '.');
}
os << "\t";