Boost logo

Boost :

From: Giovanni Bajo (giovannibajo_at_[hidden])
Date: 2002-07-13 01:51:55


----- Original Message -----
From: "Richard Hadsell" <hadsell_at_[hidden]>
To: <boost_at_[hidden]>
Sent: Friday, July 12, 2002 3:52 PM
Subject: Re: [boost] Regex++ vs. g++ 2.91.66 (egcs-1.1.2)

> That didn't help. instances.hpp:108 is this:
>
> template
> reg_expression<BOOST_REGEX_CHAR_T>::~reg_expression<BOOST_REGEX_CHAR_T>();

Notice that you're using an old (buggy) instances.hpp, latest version is in
CVS. Bascically, you have to change the lines around 104-108 to:

template reg_expression<BOOST_REGEX_CHAR_T>::reg_expression(const
BOOST_DEFAULT_ALLOCATOR(BOOST_REGEX_CHAR_T)&);
template reg_expression<BOOST_REGEX_CHAR_T>::reg_expression(const
BOOST_REGEX_CHAR_T* p, reg_expression<BOOST_REGEX_CHAR_T>::flag_type f,
const BOOST_DEFAULT_ALLOCATOR(BOOST_REGEX_CHAR_T)& a);
template reg_expression<BOOST_REGEX_CHAR_T>::reg_expression(const
BOOST_REGEX_CHAR_T* p, size_type len,
reg_expression<BOOST_REGEX_CHAR_T>::flag_type f, const
BOOST_DEFAULT_ALLOCATOR(BOOST_REGEX_CHAR_T)&);
template reg_expression<BOOST_REGEX_CHAR_T>::reg_expression(const
reg_expression<BOOST_REGEX_CHAR_T>&);
template reg_expression<BOOST_REGEX_CHAR_T>::~reg_expression();

Giovanni Bajo


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk