Fixed some issues with calling conventions for Borland/Microsoft compilers

[SVN r10114]
This commit is contained in:
John Maddock
2001-05-15 11:00:01 +00:00
parent a58bf0705d
commit f913683002
19 changed files with 33 additions and 114 deletions

View File

@ -438,7 +438,11 @@ void cpp_tests(const reg_expression<C, T, A>& e, bool recurse = true)
unsigned int hl_match_id;
bool hl_grep_test_proc(const RegEx& e)
bool
#if defined(__BORLANDC__) || defined(BOOST_MSVC)
__cdecl
#endif
hl_grep_test_proc(const RegEx& e)
{
int start, end;
start = e.Position(0);