aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBob Summerwill <bob@summerwill.net>2016-06-09 04:30:27 +0800
committerBob Summerwill <bob@summerwill.net>2016-06-09 04:30:27 +0800
commitccddd6fd2bd73bb89f7fece31d15bdd8cf755397 (patch)
tree5ff84be688f4b40e4b5dd088ea628d32d28838a6
parent63b63056893717a9ec4565ba6c1e7c746592054b (diff)
parent5707f66c993f6644b82a1904efb1ddea7c288561 (diff)
downloaddexon-solidity-ccddd6fd2bd73bb89f7fece31d15bdd8cf755397.tar
dexon-solidity-ccddd6fd2bd73bb89f7fece31d15bdd8cf755397.tar.gz
dexon-solidity-ccddd6fd2bd73bb89f7fece31d15bdd8cf755397.tar.bz2
dexon-solidity-ccddd6fd2bd73bb89f7fece31d15bdd8cf755397.tar.lz
dexon-solidity-ccddd6fd2bd73bb89f7fece31d15bdd8cf755397.tar.xz
dexon-solidity-ccddd6fd2bd73bb89f7fece31d15bdd8cf755397.tar.zst
dexon-solidity-ccddd6fd2bd73bb89f7fece31d15bdd8cf755397.zip
Merge pull request #642 from bobsummerwill/opensuse
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
{