$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: daniel_james_at_[hidden]
Date: 2008-04-15 06:19:19
Author: danieljames
Date: 2008-04-15 06:19:19 EDT (Tue, 15 Apr 2008)
New Revision: 44429
URL: http://svn.boost.org/trac/boost/changeset/44429
Log:
Fix a typo.
Text files modified: 
   website/public_html/beta/development/int_const_guidelines.html |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: website/public_html/beta/development/int_const_guidelines.html
==============================================================================
--- website/public_html/beta/development/int_const_guidelines.html	(original)
+++ website/public_html/beta/development/int_const_guidelines.html	2008-04-15 06:19:19 EDT (Tue, 15 Apr 2008)
@@ -245,7 +245,7 @@
 template <class T>
 struct foobar_helper
 {
-   BOOST_STATIC_CONSTANT(int, temp = computed_value);
+   BOOST_STATIC_CONSTANT(int, value = computed_value);
 };
 
 template <class T>