$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Aleksey Gurtovoy (agurtovoy_at_[hidden])
Date: 2002-07-26 23:58:40
...is demonstrated by the following (debug mode) test:
#include "boost/regex.hpp"
#include <cassert>
int main()
{
boost::regex re("a");
boost::cmatch match;
assert(boost::regex_match("", match, re, boost::match_partial));
}
-- Aleksey