mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
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:
parent
ac67d37f75
commit
ec1a541a6c
@ -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_;
|
||||
///
|
||||
|
Loading…
Reference in New Issue
Block a user