diff options
author | Bob Summerwill <bob@summerwill.net> | 2016-06-08 03:28:21 +0800 |
---|---|---|
committer | Bob Summerwill <bob@summerwill.net> | 2016-06-08 03:28:21 +0800 |
commit | 5707f66c993f6644b82a1904efb1ddea7c288561 (patch) | |
tree | c22957b52ef7a8ba4c796fa8d4df414d3c6aa774 /libevmasm | |
parent | e97ac4fb4919b9008bd3534cd4b915b7fe70b920 (diff) | |
download | dexon-solidity-5707f66c993f6644b82a1904efb1ddea7c288561.tar.gz dexon-solidity-5707f66c993f6644b82a1904efb1ddea7c288561.tar.zst dexon-solidity-5707f66c993f6644b82a1904efb1ddea7c288561.zip |
Fix warning showing up in openSUSE build.
Diffstat (limited to 'libevmasm')
-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 { |