From 546b08c158723d560b8eb4c78032043338e65590 Mon Sep 17 00:00:00 2001 From: Bhargava Shastry Date: Mon, 15 Oct 2018 17:44:46 +0200 Subject: Fix compiler warning: clang-8 warns of explicitly-defined op implicitly deleted for Expression object's copy and move constructors --- libsolidity/formal/SolverInterface.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/libsolidity/formal/SolverInterface.h b/libsolidity/formal/SolverInterface.h index 8bbd0417..2c450942 100644 --- a/libsolidity/formal/SolverInterface.h +++ b/libsolidity/formal/SolverInterface.h @@ -62,8 +62,6 @@ public: Expression(Expression const&) = default; Expression(Expression&&) = default; - Expression& operator=(Expression const&) = default; - Expression& operator=(Expression&&) = default; bool hasCorrectArity() const { -- cgit v1.2.3