mirror of
https://github.com/boostorg/graph.git
synced 2026-01-29 19:42:11 +00:00
Work around bug in GCC 2.95.3 standard library
[SVN r26604]
This commit is contained in:
@@ -113,7 +113,7 @@ struct grid_force_pairs
|
||||
|
||||
if (column >= columns) column = columns - 1;
|
||||
if (row >= rows) row = rows - 1;
|
||||
buckets.at(row * columns + column).push_back(*v);
|
||||
buckets[row * columns + column].push_back(*v);
|
||||
}
|
||||
|
||||
typedef typename buckets_t::iterator buckets_iterator;
|
||||
|
||||
Reference in New Issue
Block a user