$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r54625 - trunk/boost/spirit/home/support
From: hartmut.kaiser_at_[hidden]
Date: 2009-07-03 21:55:31
Author: hkaiser
Date: 2009-07-03 21:55:30 EDT (Fri, 03 Jul 2009)
New Revision: 54625
URL: http://svn.boost.org/trac/boost/changeset/54625
Log:
Spirit: Removed not needed semicolon from macro definitions
Text files modified:
trunk/boost/spirit/home/support/assert_msg.hpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/boost/spirit/home/support/assert_msg.hpp
==============================================================================
--- trunk/boost/spirit/home/support/assert_msg.hpp (original)
+++ trunk/boost/spirit/home/support/assert_msg.hpp 2009-07-03 21:55:30 EDT (Fri, 03 Jul 2009)
@@ -15,11 +15,11 @@
#if BOOST_SPIRIT_DONT_USE_MPL_ASSERT_MSG != 0
#include <boost/static_assert.hpp>
#define BOOST_SPIRIT_ASSERT_MSG(Cond, Msg, Types) \
- BOOST_STATIC_ASSERT(Cond);
+ BOOST_STATIC_ASSERT(Cond)
#else
#include <boost/mpl/assert.hpp>
#define BOOST_SPIRIT_ASSERT_MSG(Cond, Msg, Types) \
- BOOST_MPL_ASSERT_MSG(Cond, Msg, Types);
+ BOOST_MPL_ASSERT_MSG(Cond, Msg, Types)
#endif
#define BOOST_SPIRIT_ASSERT_MATCH(Domain, Expr) \