Lost in rebasing.
This commit is contained in:
Guillaume Munch 2016-07-04 04:43:22 +02:00
parent 670efa8f64
commit e90e80a2f6
2 changed files with 3 additions and 3 deletions

View File

@ -41,11 +41,11 @@ otexrowstream::otexrowstream(odocstream & os, bool enable)
otexrowstream::~otexrowstream() = default;
unique_ptr<TexRow> && otexrowstream::releaseTexRow()
unique_ptr<TexRow> otexrowstream::releaseTexRow()
{
auto p = make_unique<TexRow>();
swap(texrow_, p);
return move(p);
return p;
}

View File

@ -39,7 +39,7 @@ public:
///
TexRow & texrow() { return *texrow_; }
///
unique_ptr<TexRow> && releaseTexRow();
unique_ptr<TexRow> releaseTexRow();
///
void put(char_type const & c);
///