Boost logo

Boost :

From: hankel_o_fung_at_[hidden]
Date: 2001-03-02 10:05:26


Hi,

The following program doesn't compile using VC++6 SP4 with
Boost 1.20.2. Why not?

Hankel

#include <boost/graph/adjacency_list.hpp>

int main()
{
  using namespace boost;
  adjacency_list<> G;
  adjacency_list<>::vertex_iterator ui, vi, uend, vend;
  for (tie(ui, uend)=vertices(G); ui != uend; ++ui)
    for (tie(vi, vend)=adjacent_vertices(*ui, G); vi != vend; ++vi) {}

  return 0;
}


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk