Updated regex examples and Jamfiles so that most now run as tests.

[SVN r12067]
This commit is contained in:
John Maddock
2001-12-16 11:33:27 +00:00
parent 63130c1ef5
commit 554832217c
3 changed files with 43 additions and 15 deletions

View File

@ -21,6 +21,8 @@
* using a C++ Builder closure as a callback.
*/
#ifdef __BORLANDC__
#include <string>
#include <map>
#include <boost/regex.hpp>
@ -140,5 +142,13 @@ int main(int argc, const char** argv)
return 0;
}
#else // __BORLANDC__
int main()
{
return 0;
};
#endif