$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Jens Maurer (Jens.Maurer_at_[hidden])
Date: 2001-12-03 14:57:00
scott snyder wrote:
> With these changes, definitions that use a thin wrapper will work, like this:
>
> Hep3Vector& Hep3Vector___iadd__8 (Hep3Vector& self, const Hep3Vector& other)
> {
> self += other;
> return self;
> }
The name "Hep3Vector___iadd__8" contains double underscores and is
therefore reserved to the implementation (of C++).
See section 17.4.3.1.2 of the ISO C++ standard.
Jens Maurer