Fixes #2713: change table initialisation so that it's initialised statically.

[SVN r51103]
This commit is contained in:
John Maddock
2009-02-08 16:30:45 +00:00
parent e85cef1120
commit 48492bb9b5
3 changed files with 14 additions and 2 deletions

View File

@ -403,6 +403,10 @@ private:
bool match_char_repeat();
bool match_dot_repeat_fast();
bool match_dot_repeat_slow();
bool match_dot_repeat_dispatch()
{
return ::boost::is_random_access_iterator<BidiIterator>::value ? match_dot_repeat_fast() : match_dot_repeat_slow();
}
bool match_backstep();
bool match_assert_backref();
bool match_toggle_case();