From 936e0cfd9935b590ba1babe98d3d32786a96cc34 Mon Sep 17 00:00:00 2001
From: John Maddock
Date: Thu, 14 Feb 2002 12:56:37 +0000
Subject: [PATCH] Added note about Koenig Lookup required for examples to
compile
[SVN r12802]
---
introduction.htm | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/introduction.htm b/introduction.htm
index 6d9128d8..70534cd8 100644
--- a/introduction.htm
+++ b/introduction.htm
@@ -111,7 +111,10 @@ href="template_class_ref.htm#reg_expression">boost::regex e("(\\d{4}[-
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.
+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.
Those of you who are familiar with credit card processing,
will have realised that while the format used above is suitable