Boost compile error when a object of type pool is contained in another class

M

mackenzie

Hello,
I am looking for a little bit of help. I am trying to create a
dynamically allocated object which contains one or more objects of
type boost::pool<>. I get a compiler error when an object of this type
is contained in my class and am not sure why. To be honest I have a
little but not a lot of experience with templates and it could simply
be obvious to a more experienced template user; however, the answer
escapes me.

Here is a sample code snippet:

#include <boost/pool/pool.hpp>
#include <boost/pool/singleton_pool.hpp>

struct Foobar
{
boost::pool<> p(sizeof(int)); // this is line 182

};

boost::pool<> yp(512);

int main()
{
Foobar foobar;

printf( "%u\n", sizeof( boost::pool<>(512) ) );

return( 0 );
}

----------------------
Here is the error message:
ramMgr.cxx:182: error: expected identifier before #sizeof#
ramMgr.cxx:182: error: expected #,# or #...# before #sizeof#
---------------------------
compiler & version
g++ -v
gcc version 4.1.1 20060724 (4.1.1-3mdk)


Thanks,
Parker
 
V

Victor Bazarov

mackenzie said:
Hello,
I am looking for a little bit of help. I am trying to create a
dynamically allocated object which contains one or more objects of
type boost::pool<>. I get a compiler error when an object of this type
is contained in my class and am not sure why. To be honest I have a
little but not a lot of experience with templates and it could simply
be obvious to a more experienced template user; however, the answer
escapes me.

Here is a sample code snippet:

#include <boost/pool/pool.hpp>
#include <boost/pool/singleton_pool.hpp>

struct Foobar
{
boost::pool<> p(sizeof(int)); // this is line 182

What's the 'sizeof' for? Are you trying to initialise it? If so,
initialisation of members belongs to constructor initialiser list.
If you were trying to declare an array, then replace parentheses
with brackets. Most likely you just need to lose the parentheses
and the expression inside them.
};

boost::pool<> yp(512);

int main()
{
Foobar foobar;

printf( "%u\n", sizeof( boost::pool<>(512) ) );

return( 0 );
}

----------------------
Here is the error message:
ramMgr.cxx:182: error: expected identifier before #sizeof#
ramMgr.cxx:182: error: expected #,# or #...# before #sizeof#
---------------------------
compiler & version
g++ -v
gcc version 4.1.1 20060724 (4.1.1-3mdk)


Thanks,
Parker

V
 
M

mackenzie

What's the 'sizeof' for? Are you trying to initialise it? If so,
initialisation of members belongs to constructor initialiser list.
If you were trying to declare an array, then replace parentheses
with brackets. Most likely you just need to lose the parentheses
and the expression inside them.












V

Thanks for responding.

What I thought I was doing was creating a member of Foobar named p of
type boost::pool<> which takes a size_type as an argument to the
constructor. It seems to work in the global name space; however, when
I put it into a structure or class I get the error.
template <typename UserAllocator = default_user_allocator_new_delete>
class pool
{...
explicit pool(size_type requested_size);
};

Perhaps after the drive home and a clearer head I will stare at it
some more with your suggestion in mind and the answer will be a little
more obvious.

Thanks,
Parker
 
V

Victor Bazarov

mackenzie said:
mackenzie said:
Hello,
I am looking for a little bit of help. I am trying to create a
dynamically allocated object which contains one or more objects of
type boost::pool<>. I get a compiler error when an object of this
type is contained in my class and am not sure why. To be honest I
have a little but not a lot of experience with templates and it
could simply be obvious to a more experienced template user;
however, the answer escapes me.
Here is a sample code snippet:
#include <boost/pool/pool.hpp>
#include <boost/pool/singleton_pool.hpp>
struct Foobar
{
boost::pool<> p(sizeof(int)); // this is line 182

What's the 'sizeof' for? Are you trying to initialise it? If so,
initialisation of members belongs to constructor initialiser list.
If you were trying to declare an array, then replace parentheses
with brackets. Most likely you just need to lose the parentheses
and the expression inside them.
[..]

What I thought I was doing was creating a member of Foobar named p of
type boost::pool<> which takes a size_type as an argument to the
constructor.

You're trying to provide a particular argument in a declaration.
That's not how you initialise the member. Please read about
constructors (of classes) and the _member_initialiser_lists_.
 
M

mackenzie

Thank you Victor.

That makes perfect sense. I was looking at it as if it was being
passed in as a template argument. When in fact it is similar to any
other class.

Thanks again,
Parker
 
M

mackenzie

Thank you Victor.

That makes perfect sense. I was looking at it as if it was being
passed in as a template argument. When in fact it is similar to any
other class.

Thanks again,
Parker

For completeness, in case someone else has a similar question in the
future, the following is the corrected code:

struct Foobar
{
boost::pool<> p; // this was line 182

Foobar() : p( 5 ) {}
};

Reference: 10.4.6.1 Necessary Member Initialization; The C++
Programming Language; Bjarne Stroustrup; May 2004

Thanks again Victor.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,581
Members
45,056
Latest member
GlycogenSupporthealth

Latest Threads

Top