cosmetics: list -> vector in more places
This commit is contained in:
parent
5462f639d3
commit
a17b7523e7
44 changed files with 285 additions and 313 deletions
|
@ -98,7 +98,8 @@ bool DocSequenceDb::getEnclosing(Rcl::Doc& doc, Rcl::Doc& pdoc)
|
|||
list<string> DocSequenceDb::expand(Rcl::Doc &doc)
|
||||
{
|
||||
setQuery();
|
||||
return m_q->expand(doc);
|
||||
vector<string> v = m_q->expand(doc);
|
||||
return list<string>(v.begin(), v.end());
|
||||
}
|
||||
|
||||
string DocSequenceDb::title()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue