Opened 12 years ago

Closed 12 years ago

#4875 closed Bugs (fixed)

typo in example in mpl::list documentation

Reported by: mignon@… 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 viboes, 12 years ago

Component: Documentationmpl
Owner: changed from Matias Capeletto to Aleksey Gurtovoy

comment:2 by Steven Watanabe, 12 years ago

Resolution: fixed
Status: newclosed

(In [67105]) Fix name in list example. Fixes #4875.

Note: See TracTickets for help on using tickets.