From 816435a86097a6609cb6e5ad422083bc49b19632 Mon Sep 17 00:00:00 2001 From: Mark Haines Date: Thu, 11 Jun 2015 14:20:35 +0100 Subject: Move AES specific details behind a cipher interface --- include/axolotl/list.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/axolotl/list.hh') 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 & operator=(List const & other) { - if (this = &other) { + if (this == &other) { return *this; } T * this_pos = _data; -- cgit v1.2.3