From 5846e0eb7b266ed8d6c46fd737404d7ffb693941 Mon Sep 17 00:00:00 2001 From: Vincent van Ravesteijn Date: Fri, 3 Dec 2010 02:42:25 +0000 Subject: [PATCH] Compile fix for r36670. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36672 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/output_xhtml.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/output_xhtml.cpp b/src/output_xhtml.cpp index 8decee6fc7..e8f77e3f99 100644 --- a/src/output_xhtml.cpp +++ b/src/output_xhtml.cpp @@ -372,8 +372,8 @@ XHTMLStream & XHTMLStream::operator<<(html::EndTag const & etag) // to close. // is this tag itself pending? // non-const iterators because we may call erase(). - TagDeque::iterator dit = pending_tags_.begin(); - TagDeque::iterator const den = pending_tags_.end(); + TagStack::iterator dit = pending_tags_.begin(); + TagStack::iterator const den = pending_tags_.end(); for (; dit != den; ++dit) { if (dit->tag_ == etag.tag_) { // it was pending, so we just erase it -- 2.39.5