$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: David Clark (yg-boost-users_at_[hidden])
Date: 2002-10-19 10:25:24
Two errors in
date_time/doc/exp-print_holidays.html
In function print_date
std::cout << d << " [" << d.
should be
std::cout << d << " [" << d.day_of_week().as_short_string() << "]\n";
and year is not defined in main()
std::cout << "Enter Year: ";
int
should be
std::cout << "Enter Year: ";
int year;