|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r58531 - trunk/libs/graph/src
From: jewillco_at_[hidden]
Date: 2009-12-26 15:30:59
Author: jewillco
Date: 2009-12-26 15:30:58 EST (Sat, 26 Dec 2009)
New Revision: 58531
URL: http://svn.boost.org/trac/boost/changeset/58531
Log:
Split enum definition and object definition to work around issue in GCC 3.2; fixes #3795
Text files modified:
trunk/libs/graph/src/read_graphviz_new.cpp | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
Modified: trunk/libs/graph/src/read_graphviz_new.cpp
==============================================================================
--- trunk/libs/graph/src/read_graphviz_new.cpp (original)
+++ trunk/libs/graph/src/read_graphviz_new.cpp 2009-12-26 15:30:58 EST (Sat, 26 Dec 2009)
@@ -77,7 +77,8 @@
quoted_string, // Only used internally in tokenizer
eof,
invalid
- } type;
+ };
+ token_type type;
std::string normalized_value; // May have double-quotes removed and/or some escapes replaced
token(token_type type, const std::string& normalized_value)
: type(type), normalized_value(normalized_value) {}
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk