Hello, 
I just recently found Boost, and I am attempting to use it in a project I am working on.  However, in my attempts to make simple graphs with the graph/adjacency_list.hpp subdirectory, I get a compiler error within the code for adjacency_list.hpp.  I don't know if I can copy the error message correctly, but the errors seem centered around lines 1503-1505, those saying 

  typedef typename lookup_one_property<vertex_property_type, vertex_bundle_t>::type vertex_bundled;
      typedef typename lookup_one_property<edge_property_type, edge_bundle_t>::type edge_bundled;
      typedef typename lookup_one_property<graph_property_type, graph_bundle_t>::type graph_bundled;

then lines 2027 and 275 are mentioned.

The code I myself wrote compiles fine on its own.  I'm using the IDE Dev-C++.