# HG changeset patch # User John W. Eaton # Date 1202874230 18000 # Node ID 5d17672228d5c2ddef148885370fce33a85f3c02 # Parent 128a1ef5e21e1c95d8de15224ed03ccc9cf3d557 fix missing line continuation in BEGIN_CHAR_CLASS_CONVERSION macro diff -r 128a1ef5e21e -r 5d17672228d5 src/oct-stream.cc --- a/src/oct-stream.cc Tue Feb 12 22:42:28 2008 -0500 +++ b/src/oct-stream.cc Tue Feb 12 22:43:50 2008 -0500 @@ -1540,8 +1540,8 @@ do \ { \ if (! width) \ - width = INT_MAX; - + width = INT_MAX; \ + \ std::ostringstream buf; \ \ std::string char_class = elt->char_class; \