$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r77098 - trunk/boost/variant/detail
From: steven_at_[hidden]
Date: 2012-02-22 20:14:14
Author: steven_watanabe
Date: 2012-02-22 20:14:13 EST (Wed, 22 Feb 2012)
New Revision: 77098
URL: http://svn.boost.org/trac/boost/changeset/77098
Log:
Make sure that variants with more than 20 types work.
Text files modified: 
   trunk/boost/variant/detail/visitation_impl.hpp |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/boost/variant/detail/visitation_impl.hpp
==============================================================================
--- trunk/boost/variant/detail/visitation_impl.hpp	(original)
+++ trunk/boost/variant/detail/visitation_impl.hpp	2012-02-22 20:14:13 EST (Wed, 22 Feb 2012)
@@ -261,7 +261,7 @@
 
 #   undef BOOST_VARIANT_AUX_APPLY_VISITOR_STEP_CASE
 
-    default: BOOST_ASSERT(!"Boost.Variant internal error: 'which' out of range.");
+    default: break;
     }
 
     // If not handled in this iteration, continue unrolling: