diff options
author | Bob Summerwill <bob@summerwill.net> | 2016-06-09 04:30:27 +0800 |
---|---|---|
committer | Bob Summerwill <bob@summerwill.net> | 2016-06-09 04:30:27 +0800 |
commit | ccddd6fd2bd73bb89f7fece31d15bdd8cf755397 (patch) | |
tree | 5ff84be688f4b40e4b5dd088ea628d32d28838a6 | |
parent | 63b63056893717a9ec4565ba6c1e7c746592054b (diff) | |
parent | 5707f66c993f6644b82a1904efb1ddea7c288561 (diff) | |
download | dexon-solidity-ccddd6fd2bd73bb89f7fece31d15bdd8cf755397.tar.gz 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.h | 2 |
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 { |