From 5707f66c993f6644b82a1904efb1ddea7c288561 Mon Sep 17 00:00:00 2001 From: Bob Summerwill Date: Tue, 7 Jun 2016 12:28:21 -0700 Subject: [PATCH] Fix warning showing up in openSUSE build. --- libevmasm/SourceLocation.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libevmasm/SourceLocation.h b/libevmasm/SourceLocation.h index 8e22a8261..05304d146 100644 --- a/libevmasm/SourceLocation.h +++ b/libevmasm/SourceLocation.h @@ -45,7 +45,7 @@ struct SourceLocation end(_other.end), sourceName(std::move(_other.sourceName)) {} - SourceLocation(SourceLocation const& _other) = default; + SourceLocation(SourceLocation const&) = default; SourceLocation& operator=(SourceLocation const&) = default; SourceLocation& operator=(SourceLocation&& _other) noexcept {