Opened 15 years ago

Closed 14 years ago

#1751 closed Patches (fixed)

ptr_container/ptr_deque.hpp:45: error: extra semicolon

Reported by: nasonov Owned by: Thorsten Ottosen
Milestone: To Be Determined Component: ptr_container
Version: Boost 1.35.0 Severity: Problem
Keywords: Cc:

Description

Boost-1.35.0 fails under gcc 3.4.6 on Linux:

boost/ptr_container/ptr_deque.hpp: At global scope: boost/ptr_container/ptr_deque.hpp:45: error: extra semicolon

This can be easily fixed:

--- boost/ptr_container/ptr_deque.hpp.orig 2008-04-02 17:51:11.518541000 +0900 +++ boost/ptr_container/ptr_deque.hpp 2008-04-02 17:51:21.848015000 +0900 @@ -44,7 +44,7 @@

BOOST_PTR_CONTAINER_DEFINE_SEQEUENCE_MEMBERS( ptr_deque,

base_class,

  • this_type );

+ this_type )

};

Attachments (1)

ptr_deque.hpp.txt (543 bytes ) - added by nasonov 15 years ago.
the patch

Download all attachments as: .zip

Change History (3)

by nasonov, 15 years ago

Attachment: ptr_deque.hpp.txt added

the patch

comment:1 by anonymous, 15 years ago

Same for ptr_vector.hpp:45! And with GCC 4.1.3.

comment:2 by Thorsten Ottosen, 14 years ago

Resolution: fixed
Status: newclosed

This seems to be a problem all over the library ... should be fixed now.

Thanks

-Thorsten

Note: See TracTickets for help on using tickets.