From 5f110486a94b760596848ac07177538841e31e50 Mon Sep 17 00:00:00 2001
From: Hartmut Kaiser
Date: Thu, 15 Dec 2005 02:15:57 +0000
Subject: [PATCH] Fixed missing #pragma warning(pop) directives in Wave.
[SVN r32057]
---
ChangeLog | 1 +
doc/introduction.html | 4 ++--
include/boost/wave/cpp_context.hpp | 3 ++-
include/boost/wave/cpplexer/cpp_lex_interface.hpp | 4 ++++
include/boost/wave/cpplexer/re2clex/cpp_re.hpp | 4 ++++
include/boost/wave/grammars/cpp_defined_grammar_gen.hpp | 4 ++++
include/boost/wave/grammars/cpp_expression_grammar_gen.hpp | 4 ++++
include/boost/wave/grammars/cpp_grammar_gen.hpp | 4 ++++
include/boost/wave/grammars/cpp_literal_grammar_gen.hpp | 4 ++++
include/boost/wave/grammars/cpp_predef_macros_gen.hpp | 4 ++++
src/cpplexer/re2clex/cpp_re.inc | 2 +-
src/cpplexer/re2clex/strict_cpp_re.inc | 2 +-
src/instantiate_cpp_exprgrammar.cpp | 6 ------
src/instantiate_cpp_grammar.cpp | 6 ------
14 files changed, 35 insertions(+), 17 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 5d1c0d3..67ee4f2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -78,6 +78,7 @@ CHANGELOG
#pragma's are fdispatched to the interpret_pragma() preprocessing hook.
The default value for BOOST_WAVE_PRAGMA_COMMAND is "wave" to ensure complete
backward compatibility.
+- Added missing #pragma warning(pop) directives.
Mon Dec 5 22:05:22 CST 2005
Boost V1.33.1
diff --git a/doc/introduction.html b/doc/introduction.html
index a1c7480..fee182b 100644
--- a/doc/introduction.html
+++ b/doc/introduction.html
@@ -27,7 +27,7 @@
implementation of the mandated C99/C++ preprocessor functionality packed behind
a simple to use interface, which integrates well with the well known idioms
of the Standard Template Library (STL).
-The Wave C++ preprocessor is not a monolitic application,
+
The Wave C++ preprocessor is not a monolithic application,
it's rather a modular library, which exposes mainly a context object and an
iterator interface. The context object helps to configure the actual preprocessing
process (as search path's, predefined macros, etc.). The exposed iterators are
@@ -87,7 +87,7 @@ preprocessing, but allows to use Wave for all of the IDL derivatives.
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)
Last updated:
- Sunday, May 15, 2005 12:23
+ Wednesday, December 14, 2005 10:58