Opened 12 years ago
Closed 12 years ago
#4875 closed Bugs (fixed)
typo in example in mpl::list documentation
Reported by: | Owned by: | Aleksey Gurtovoy | |
---|---|---|---|
Milestone: | To Be Determined | Component: | mpl |
Version: | Boost 1.45.0 | Severity: | Cosmetic |
Keywords: | mpl | Cc: |
Description
In http://www.boost.org/doc/libs/1_45_0/libs/mpl/doc/refmanual/list.html,
typedef list<float,double,long double> floats; typedef push_front<floating_types,int>::type types;
should be:
typedef list<float,double,long double> floats; typedef push_front<floats,int>::type types;
Change History (2)
comment:1 by , 12 years ago
Component: | Documentation → mpl |
---|---|
Owner: | changed from | to
comment:2 by , 12 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
(In [67105]) Fix name in list example. Fixes #4875.