From e9a8aee3aa826700b3985514609afcfa343a05c3 Mon Sep 17 00:00:00 2001 From: Tim King Date: Thu, 24 Dec 2015 15:00:35 -0500 Subject: Adding a missing return on the new ArrayStoreAll::operator= . --- src/expr/array_store_all.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/expr/array_store_all.cpp b/src/expr/array_store_all.cpp index d9d0a5f8d..6ac07c81d 100644 --- a/src/expr/array_store_all.cpp +++ b/src/expr/array_store_all.cpp @@ -40,6 +40,7 @@ ArrayStoreAll::~ArrayStoreAll() throw() { ArrayStoreAll& ArrayStoreAll::operator=(const ArrayStoreAll& other){ (*d_type) = other.getType(); (*d_expr) = other.getExpr(); + return *this; } ArrayStoreAll::ArrayStoreAll(const ArrayType& type, const Expr& expr) -- cgit v1.2.3