$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Aleksey Gurtovoy (alexy_at_[hidden])
Date: 2000-09-11 03:20:24
I've just found a little inconsistence in our 'operators' library's
documentation: the example of explicit instantiation of operator templates
uses the 'class' keyword
| class myclass // lose the inheritance...
| {
| //...
| };
| // explicitly instantiate the operators I need.
| template class less_than_comparable<myclass>;
| template class equality_comparable<myclass>;
//...
and we switched to 'struct' some time ago.
--Aleksey