Fix MSVC unreferenced parameter warning. Patch from STL@microsoft.com

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@276583 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Fiselier
2016-07-24 23:32:48 +00:00
parent a29e0e5ba2
commit e3ecccdf48

View File

@@ -39,7 +39,7 @@ struct D
struct E {
E() = default;
E& operator=(int val) {
E& operator=(int) {
return *this;
}
};