No need for two different containers here.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36670 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2010-12-02 22:11:52 +00:00
parent ac67d37f75
commit ec1a541a6c

View File

@ -17,7 +17,6 @@
#include "support/strfwd.h"
#include <deque>
#include <vector>
namespace lyx {
@ -136,13 +135,9 @@ private:
///
odocstream & os_;
///
// int tab_;
///
typedef std::deque<html::StartTag> TagDeque;
///
typedef std::vector<html::StartTag> TagStack;
typedef std::deque<html::StartTag> TagStack;
/// holds start tags until we know there is content in them.
TagDeque pending_tags_;
TagStack pending_tags_;
/// remembers the history, so we can make sure we nest properly.
TagStack tag_stack_;
///