Ticket #3795: boost-gcc3.2.patch

File boost-gcc3.2.patch, 527 bytes (added by Max Khon <fjoe@…>, 13 years ago)
  • ./libs/graph/src/read_graphviz_new.cpp

    old new  
    7575      quoted_string, // Only used internally in tokenizer
    7676      eof,
    7777      invalid
    78     } type;
     78    }; token_type type;
    7979    std::string normalized_value; // May have double-quotes removed and/or some escapes replaced
    8080    token(token_type type, const std::string& normalized_value)
    8181      : type(type), normalized_value(normalized_value) {}