$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r84728 - branches/release/libs/graph/src
From: jewillco_at_[hidden]
Date: 2013-06-10 11:23:08
Author: jewillco
Date: 2013-06-10 11:23:08 EDT (Mon, 10 Jun 2013)
New Revision: 84728
URL: http://svn.boost.org/trac/boost/changeset/84728
Log:
Merged another bug fix from trunk
Properties modified: 
   branches/release/libs/graph/src/read_graphviz_new.cpp   (contents, props changed)
Text files modified: 
   branches/release/libs/graph/src/read_graphviz_new.cpp |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: branches/release/libs/graph/src/read_graphviz_new.cpp
==============================================================================
--- branches/release/libs/graph/src/read_graphviz_new.cpp	Mon Jun 10 11:10:49 2013	(r84727)
+++ branches/release/libs/graph/src/read_graphviz_new.cpp	2013-06-10 11:23:08 EDT (Mon, 10 Jun 2013)	(r84728)
@@ -144,7 +144,7 @@
     {
       std::string end_of_token = "(?=(?:\\W))";
       std::string whitespace = "(?:\\s+)";
-      std::string slash_slash_comment = "(?://.*$)";
+      std::string slash_slash_comment = "(?://.*?$)";
       std::string slash_star_comment = "(?:/\\*.*?\\*/)";
       std::string hash_comment = "(?:^#.*?$)";
       std::string backslash_newline = "(?:[\\\\][\\n])";