Opened 13 years ago
Closed 13 years ago
#3026 closed Bugs (fixed)
[tuple] regression test failures on GCC 4 in C++0x mode
| Reported by: | Owned by: | Joel de Guzman | |
|---|---|---|---|
| Milestone: | Boost 1.40.0 | Component: | tuple |
| Version: | Boost Development Trunk | Severity: | Problem |
| Keywords: | Cc: |
Description
The tuple regression tests are all failing on GCC 4.3/4.4 in C++0x mode due to ambiguities between boost::tuple and std::tuple (e.g. http://tinyurl.com/qyfk99)
The attached patch avoids these problems by removing some uses of 'using namespace std' and qualifying calls with std:: instead.
Attachments (1)
Change History (2)
by , 13 years ago
| Attachment: | tuple.patch added |
|---|
comment:1 by , 13 years ago
| Resolution: | → fixed |
|---|---|
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.

(In [53212]) Avoid ambiguites between std and boost components in C++0x mode. Fixes #3026