$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Serge Pashkov (psw_at_[hidden])
Date: 2001-06-18 00:42:10
Hello,
In boost/pending/disjoint_sets.hpp we have
  struct find_with_path_halving {
    template <class ParentPA, class Vertex>
    Vertex operator()(ParentPA p, Vertex v) { 
      return detail::find_representative_with_path_halving(pc, v);
    }
  };
Probably ...(pc,v) is typo, should be
  struct find_with_path_halving {
    template <class ParentPA, class Vertex>
    Vertex operator()(ParentPA p, Vertex v) { 
      return detail::find_representative_with_path_halving(p, v);
    }
  };
-- Best regards, Serge mailto:psw_at_[hidden]