summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorjan.reininghaus <jan.reininghaus@8e3bb3c2-eed4-f18f-5264-0b6c94e6926d>2013-12-17 10:23:58 +0000
committerjan.reininghaus <jan.reininghaus@8e3bb3c2-eed4-f18f-5264-0b6c94e6926d>2013-12-17 10:23:58 +0000
commitd7d252f4ab9cfea4001b29f25982fd045524054c (patch)
treeac5b14b5467756f26519ddd57c8bc02bdf962e22 /include
parent6723f7687a27ac4e48a5d46bdac9cd4aa2478830 (diff)
signed comparison warning fix
git-svn-id: https://phat.googlecode.com/svn/trunk@148 8e3bb3c2-eed4-f18f-5264-0b6c94e6926d
Diffstat (limited to 'include')
-rw-r--r--include/phat/algorithms/block_spectral_sequence_reduction.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/phat/algorithms/block_spectral_sequence_reduction.h b/include/phat/algorithms/block_spectral_sequence_reduction.h
index 398236e..2240c34 100644
--- a/include/phat/algorithms/block_spectral_sequence_reduction.h
+++ b/include/phat/algorithms/block_spectral_sequence_reduction.h
@@ -54,7 +54,7 @@ namespace phat {
index row_begin = (cur_stripe - cur_pass) * block_size;
index row_end = row_begin + block_size;
unreduced_cols_next_pass[ cur_stripe ].clear();
- for( index idx = 0; idx < unreduced_cols_cur_pass[ cur_stripe ].size(); idx++ ) {
+ for( index idx = 0; idx < (index)unreduced_cols_cur_pass[ cur_stripe ].size(); idx++ ) {
index cur_col = unreduced_cols_cur_pass[ cur_stripe ][ idx ];
index lowest_one = boundary_matrix.get_max_index( cur_col );
while( lowest_one != -1 && lowest_one >= row_begin && lowest_one < row_end && lowest_one_lookup[ lowest_one ] != -1 ) {