diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-06-11 14:20:35 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-06-11 14:20:35 +0100 |
commit | 816435a86097a6609cb6e5ad422083bc49b19632 (patch) | |
tree | 60be06f84b4fe6ee404b3cbce9b0ca1256bab1cb /include/axolotl/list.hh | |
parent | 8161b56ff050b81a20002e9d8addf947625d17be (diff) |
Move AES specific details behind a cipher interface
Diffstat (limited to 'include/axolotl/list.hh')
-rw-r--r-- | include/axolotl/list.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/axolotl/list.hh b/include/axolotl/list.hh index d1407b8..ae8900c 100644 --- a/include/axolotl/list.hh +++ b/include/axolotl/list.hh @@ -92,7 +92,7 @@ public: } List<T, max_size> & operator=(List<T, max_size> const & other) { - if (this = &other) { + if (this == &other) { return *this; } T * this_pos = _data; |