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)
Change History (3)
by , 15 years ago
Attachment: | ptr_deque.hpp.txt added |
---|
comment:2 by , 14 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
This seems to be a problem all over the library ... should be fixed now.
Thanks
-Thorsten
the patch