From 269686ff4f2681672a73e6ef509b080f2ca742fc Mon Sep 17 00:00:00 2001 From: Daniel James Date: Fri, 27 Jun 2008 16:58:25 +0000 Subject: [PATCH] Fix a unicode character which looked a lot like a '^'. [SVN r46780] --- ascii_check.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ascii_check.cpp b/ascii_check.cpp index 556f4eb..4e3fd96 100644 --- a/ascii_check.cpp +++ b/ascii_check.cpp @@ -16,7 +16,7 @@ namespace boost 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