From 8b4da77f83c18e904347ecf56aca03c96e2d8917 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 24 Oct 2003 11:00:29 +0000 Subject: [PATCH] Undone unintended commit on this file. [SVN r20471] --- include/boost/regex/v4/regex_traits.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/regex/v4/regex_traits.hpp b/include/boost/regex/v4/regex_traits.hpp index 7ae29966..6859b38c 100644 --- a/include/boost/regex/v4/regex_traits.hpp +++ b/include/boost/regex/v4/regex_traits.hpp @@ -562,7 +562,7 @@ struct BOOST_REGEX_DECL cpp_regex_traits_base : public regex_traits_base char_class_digit = std::ctype_base::digit, char_class_graph = std::ctype_base::graph, char_class_lower = std::ctype_base::lower, - char_class_print = 0,//std::ctype_base::print, + char_class_print = std::ctype_base::print, char_class_punct = std::ctype_base::punct, char_class_space = std::ctype_base::space, char_class_upper = std::ctype_base::upper,