$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: daniel_james_at_[hidden]
Date: 2008-06-27 12:58:26
Author: danieljames
Date: 2008-06-27 12:58:25 EDT (Fri, 27 Jun 2008)
New Revision: 46780
URL: http://svn.boost.org/trac/boost/changeset/46780
Log:
Fix a unicode character which looked a lot like a '^'.
Text files modified:
trunk/tools/inspect/ascii_check.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/tools/inspect/ascii_check.cpp
==============================================================================
--- trunk/tools/inspect/ascii_check.cpp (original)
+++ trunk/tools/inspect/ascii_check.cpp 2008-06-27 12:58:25 EDT (Fri, 27 Jun 2008)
@@ -16,7 +16,7 @@
namespace inspect
{
- static const string gPunct ( "$_{}[]#()<>%:;.?*+-/Ë&|~!=,\\\"'@^`" );
+ static const string gPunct ( "$_{}[]#()<>%:;.?*+-/^&|~!=,\\\"'@^`" );
// Legal characters for a source file are defined in section 2.2 of the standard
// I have added '@', '^', and '`' to the "legal" chars because they are commonly