$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r57291 - in trunk/boost/spirit: home/lex include
From: hartmut.kaiser_at_[hidden]
Date: 2009-11-02 12:20:19
Author: hkaiser
Date: 2009-11-02 12:20:18 EST (Mon, 02 Nov 2009)
New Revision: 57291
URL: http://svn.boost.org/trac/boost/changeset/57291
Log:
Spirit: added missing header file
Added:
   trunk/boost/spirit/include/lex_tokenize_and_parse_attr.hpp   (contents, props changed)
Text files modified: 
   trunk/boost/spirit/home/lex/tokenize_and_parse.hpp    |     2 +-                                      
   trunk/boost/spirit/include/lex_tokenize_and_parse.hpp |     1 -                                       
   2 files changed, 1 insertions(+), 2 deletions(-)
Modified: trunk/boost/spirit/home/lex/tokenize_and_parse.hpp
==============================================================================
--- trunk/boost/spirit/home/lex/tokenize_and_parse.hpp	(original)
+++ trunk/boost/spirit/home/lex/tokenize_and_parse.hpp	2009-11-02 12:20:18 EST (Mon, 02 Nov 2009)
@@ -235,7 +235,7 @@
     //
     //  The function takes a pair of iterators spanning the underlying input 
     //  stream to scan, the lexer object (built from the token definitions),
-    //  and a (optional) functor being call for each of the generated tokens. 
+    //  and a (optional) functor being called for each of the generated tokens. 
     //
     //  The function returns true if the scanning of the input succeeded (the 
     //  given input sequence has been successfully matched by the given token
Modified: trunk/boost/spirit/include/lex_tokenize_and_parse.hpp
==============================================================================
--- trunk/boost/spirit/include/lex_tokenize_and_parse.hpp	(original)
+++ trunk/boost/spirit/include/lex_tokenize_and_parse.hpp	2009-11-02 12:20:18 EST (Mon, 02 Nov 2009)
@@ -14,6 +14,5 @@
 #endif
 
 #include <boost/spirit/home/lex/tokenize_and_parse.hpp>
-#include <boost/spirit/home/lex/tokenize_and_parse_attr.hpp>
 
 #endif
Added: trunk/boost/spirit/include/lex_tokenize_and_parse_attr.hpp
==============================================================================
--- (empty file)
+++ trunk/boost/spirit/include/lex_tokenize_and_parse_attr.hpp	2009-11-02 12:20:18 EST (Mon, 02 Nov 2009)
@@ -0,0 +1,18 @@
+/*=============================================================================
+    Copyright (c) 2001-2009 Joel de Guzman
+    Copyright (c) 2001-2009 Hartmut Kaiser
+    http://spirit.sourceforge.net/
+
+    Distributed under the Boost Software License, Version 1.0. (See accompanying
+    file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+=============================================================================*/
+#ifndef BOOST_SPIRIT_INCLUDE_LEX_TOKENIZE_AND_PARSE_ATTR
+#define BOOST_SPIRIT_INCLUDE_LEX_TOKENIZE_AND_PARSE_ATTR
+
+#if defined(_MSC_VER)
+#pragma once
+#endif
+
+#include <boost/spirit/home/lex/tokenize_and_parse_attr.hpp>
+
+#endif