Opened 13 years ago
Closed 13 years ago
#3499 closed Bugs (fixed)
VectorConcept missing DefaultConstructible concept check
Reported by: | Owned by: | Gunter | |
---|---|---|---|
Milestone: | Boost 1.41.0 | Component: | uBLAS |
Version: | Boost 1.40.0 | Severity: | Problem |
Keywords: | Cc: |
Description
Current (and at least in 1.39.0) documentation says that Vector is a refinement of DefaultConstructible. However, concept checking classes seem to ignore to test for DefaultConstructible.
Change History (3)
comment:1 by , 13 years ago
comment:2 by , 13 years ago
Status: | new → assigned |
---|
in order to execute all concept checks one has to update the jamfile in libs/numeric/ublas/test. The internal tests are disabled by default because they are very expensive.
Index: test/Jamfile.v2 =================================================================== --- test/Jamfile.v2 (Revision 56525) +++ test/Jamfile.v2 (Arbeitskopie) @@ -103,6 +103,8 @@ test-suite numeric/uBLAS [ compile concepts.cpp : # requirements <define>EXTERNAL + <define>INTERAL + <define>SKIP_BAD <toolset>intel-linux:<cxxflags>"-Xc" <toolset>darwin:<cxxflags>"-fabi-version=0" ]
comment:3 by , 13 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Note:
See TracTickets
for help on using tickets.
(In [56535]) see #3499: