diff -urp boost_1_48_0~/boost/asio/buffers_iterator.hpp boost_1_48_0/boost/asio/buffers_iterator.hpp
|
old
|
new
|
public:
|
| 128 | 128 | /// Construct an iterator representing the beginning of the buffers' data. |
| 129 | 129 | static buffers_iterator begin(const BufferSequence& buffers) |
| 130 | 130 | #if BOOST_WORKAROUND(__GNUC__, == 4) && BOOST_WORKAROUND(__GNUC_MINOR__, == 3) |
| 131 | | __attribute__ ((noinline)) |
| | 131 | __attribute__ ((__noinline__)) |
| 132 | 132 | #endif |
| 133 | 133 | { |
| 134 | 134 | buffers_iterator new_iter; |
| … |
… |
public:
|
| 148 | 148 | /// Construct an iterator representing the end of the buffers' data. |
| 149 | 149 | static buffers_iterator end(const BufferSequence& buffers) |
| 150 | 150 | #if BOOST_WORKAROUND(__GNUC__, == 4) && BOOST_WORKAROUND(__GNUC_MINOR__, == 3) |
| 151 | | __attribute__ ((noinline)) |
| | 151 | __attribute__ ((__noinline__)) |
| 152 | 152 | #endif |
| 153 | 153 | { |
| 154 | 154 | buffers_iterator new_iter; |