$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Kevin S. Van Horn (kevin_vanhorn_at_[hidden])
Date: 2001-04-03 10:58:23
Apparently properties.hpp is not self-contained. The following program
gives me numerous errors in properties.hpp:
#include <boost/graph/properties.hpp>
using namespace boost;
int foo(vertex_index_t)
{
return 3;
}
The errors disappear if I add
#include <boost/graph/breadth_first_search.hpp>
before properties.hpp.