id,summary,reporter,owner,description,type,status,milestone,component,version,severity,resolution,keywords,cc 4845,end_of_month_day,robbie@…,az_sw_dude,"the last entry in section: http://www.boost.org/doc/libs/1_44_0/doc/html/date_time/gregorian.html#date_accessors is incorrect: {{{ date end_of_month_day() const }}} it should read: {{{ date end_of_month() const }}} supporting trials: {{{ // call : $ g++ -ggdb -Wall -pedantic -Weffc++ test.cc -o test // compiler : g++ (Ubuntu 4.4.3-4ubuntu5) 4.4.3 // library : Boost 1.44.0 #include // standard io #include // may require -lboost_date_time int main() { namespace bg = boost::gregorian; // namespace aliases const bg::date feb(2000, bg::Feb, 1); const bg::date eom = feb.end_of_month(); // [1] //const bg::date eom = feb.end_of_month_day(); // [2] const int dom = eom.day(); // recover day-of-month std::cout << ""day-of-month : "" << dom << std::endl; } // [1] works as expected // [2] test.cc:21: error: 'const class boost::gregorian::date' // has no member named 'end_of_month_day }}}",Patches,closed,To Be Determined,date_time,Boost Development Trunk,Problem,fixed,,