2
0
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:
Douglas Gregor
2004-12-29 16:53:05 +00:00
parent 867851b81f
commit f2a49988ce

View File

@@ -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;