This commit is contained in:
jzmaddock
2014-10-21 09:15:40 +01:00
parent a50c438d77
commit 406b2a9aa1
9 changed files with 14 additions and 14 deletions

View File

@ -69,7 +69,7 @@ Note how we had to add some extra escapes to the expression: remember that
the escape is seen once by the C++ compiler, before it gets to be seen by
the regular expression engine, consequently escapes in regular expressions
have to be doubled up when embedding them in C/C++ code. Also note that
all the examples assume that your compiler supports argument-dependent-lookup
all the examples assume that your compiler supports argument-dependent
lookup, if yours doesn't (for example VC6), then you will have to add some
`boost::` prefixes to some of the function calls in the examples.