mirror of
https://github.com/boostorg/xpressive.git
synced 2026-01-31 08:42:26 +00:00
10 lines
187 B
C++
Executable File
10 lines
187 B
C++
Executable File
#include <boost/xpressive/xpressive.hpp>
|
|
extern int f();
|
|
int main()
|
|
{
|
|
using namespace boost::xpressive;
|
|
sregex srx = +_;
|
|
sregex drx = sregex::compile(".+");
|
|
return f();
|
|
}
|