From bc6504eda92efc179b6002e673f64c691be8c4a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Sch=C3=B6pflin?= Date: Mon, 20 Jun 2005 09:22:49 +0000 Subject: [PATCH] Fix for compilers not implementing the resolution to DR45. [SVN r29699] --- include/boost/regex/pending/object_cache.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/boost/regex/pending/object_cache.hpp b/include/boost/regex/pending/object_cache.hpp index e1387d16..6194d129 100644 --- a/include/boost/regex/pending/object_cache.hpp +++ b/include/boost/regex/pending/object_cache.hpp @@ -51,6 +51,10 @@ private: list_type cont; map_type index; }; + + // Needed by compilers not implementing the resolution to DR45. For reference, + // see http://www.open-std.org/JTC1/SC22/WG21/docs/cwg_defects.html#45. + friend struct data; }; template