mirror of
https://github.com/boostorg/regex.git
synced 2025-07-23 17:17:22 +02:00
Added note about Koenig Lookup required for examples to compile
[SVN r12802]
This commit is contained in:
@ -111,7 +111,10 @@ href="template_class_ref.htm#reg_expression">boost::regex</a> e("(\\d{4}[-
|
|||||||
remember that the escape is seen once by the C++ compiler, before
|
remember that the escape is seen once by the C++ compiler, before
|
||||||
it gets to be seen by the regular expression engine, consequently
|
it gets to be seen by the regular expression engine, consequently
|
||||||
escapes in regular expressions have to be doubled up when
|
escapes in regular expressions have to be doubled up when
|
||||||
embedding them in C/C++ code.</p>
|
embedding them in C/C++ code. Also note that all the examples
|
||||||
|
assume that your compiler supports Koenig 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.</p>
|
||||||
|
|
||||||
<p>Those of you who are familiar with credit card processing,
|
<p>Those of you who are familiar with credit card processing,
|
||||||
will have realised that while the format used above is suitable
|
will have realised that while the format used above is suitable
|
||||||
|
Reference in New Issue
Block a user