aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBob Summerwill <bob@summerwill.net>2016-06-08 03:28:21 +0800
committerBob Summerwill <bob@summerwill.net>2016-06-08 03:28:21 +0800
commit5707f66c993f6644b82a1904efb1ddea7c288561 (patch)
treec22957b52ef7a8ba4c796fa8d4df414d3c6aa774
parente97ac4fb4919b9008bd3534cd4b915b7fe70b920 (diff)
downloaddexon-solidity-5707f66c993f6644b82a1904efb1ddea7c288561.tar
dexon-solidity-5707f66c993f6644b82a1904efb1ddea7c288561.tar.gz
dexon-solidity-5707f66c993f6644b82a1904efb1ddea7c288561.tar.bz2
dexon-solidity-5707f66c993f6644b82a1904efb1ddea7c288561.tar.lz
dexon-solidity-5707f66c993f6644b82a1904efb1ddea7c288561.tar.xz
dexon-solidity-5707f66c993f6644b82a1904efb1ddea7c288561.tar.zst
dexon-solidity-5707f66c993f6644b82a1904efb1ddea7c288561.zip
Fix warning showing up in openSUSE build.
-rw-r--r--libevmasm/SourceLocation.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libevmasm/SourceLocation.h b/libevmasm/SourceLocation.h
index 8e22a826..05304d14 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
{