Update upstream AMTL as a submodule.

This commit is contained in:
David Anderson
2015-03-08 00:24:03 -08:00
parent 8bb6f0e5c6
commit eaea3c927d
30 changed files with 32 additions and 3904 deletions
+4 -4
View File
@@ -63,11 +63,11 @@ public:
: control_(0)
{
}
Entry(ke::Moveable<Entry> other)
Entry(Entry &&other)
{
control_ = other->control_;
data_ = other->data_;
other->control_ = 0;
control_ = other.control_;
data_ = other.data_;
other.control_ = 0;
}
~Entry()