mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-13 17:20:55 +00:00
Backport revision 20309:
URL: http://www.lyx.org/trac/changeset/20309 * Ambigous else * Missing header file git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_5_X@20310 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
ab225a0dfa
commit
84f9bac291
@ -41,6 +41,7 @@
|
||||
|
||||
#include <istream>
|
||||
#include <ios>
|
||||
#include <climits>
|
||||
|
||||
#ifdef BOOST_HAS_ABI_HEADERS
|
||||
# include BOOST_ABI_PREFIX
|
||||
|
@ -335,12 +335,13 @@ namespace boost{
|
||||
if (next == end)
|
||||
return false;
|
||||
|
||||
if (current_offset_ == offsets_.size())
|
||||
if (current_offset_ == offsets_.size()) {
|
||||
if (wrap_offsets_)
|
||||
current_offset_=0;
|
||||
else
|
||||
return false;
|
||||
|
||||
}
|
||||
|
||||
int c = offsets_[current_offset_];
|
||||
int i = 0;
|
||||
for (; i < c; ++i) {
|
||||
@ -448,14 +449,15 @@ namespace boost{
|
||||
else { // m_empty_tokens == keep_empty_tokens
|
||||
|
||||
// Handle empty token at the end
|
||||
if (next == end)
|
||||
if (next == end) {
|
||||
if (m_output_done == false) {
|
||||
m_output_done = true;
|
||||
assigner::assign(start,next,tok);
|
||||
return true;
|
||||
} else
|
||||
return false;
|
||||
|
||||
}
|
||||
|
||||
if (is_kept(*next)) {
|
||||
if (m_output_done == false)
|
||||
m_output_done = true;
|
||||
|
Loading…
Reference in New Issue
Block a user