Re: [PATCH] D21314: Make pair and tuple respect is_copy_assignable and is_move_assignable

2016-07-23 Thread Eric Fiselier via cfe-commits
EricWF abandoned this revision. EricWF added a comment. Similar reversion committed as r276548. https://reviews.llvm.org/D21314 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Re: [PATCH] D21314: Make pair and tuple respect is_copy_assignable and is_move_assignable

2016-06-13 Thread Eric Fiselier via cfe-commits
EricWF updated this revision to Diff 60640. EricWF added a comment. Fix merge conflicts with master. http://reviews.llvm.org/D21314 Files: include/tuple include/utility test/test.pass.cpp Index: test/test.pass.cpp === --- /d

Re: [PATCH] D21314: Make pair and tuple respect is_copy_assignable and is_move_assignable

2016-06-13 Thread Eric Fiselier via cfe-commits
EricWF updated this revision to Diff 60638. EricWF added a comment. Actually get all of the tests passing. Sorry for the spam. http://reviews.llvm.org/D21314 Files: include/tuple include/utility test/test.pass.cpp Index: test/test.pass.cpp ===

Re: [PATCH] D21314: Make pair and tuple respect is_copy_assignable and is_move_assignable

2016-06-13 Thread Eric Fiselier via cfe-commits
EricWF updated this revision to Diff 60637. EricWF added a comment. All tests are now passing. http://reviews.llvm.org/D21314 Files: include/tuple include/utility test/test.pass.cpp Index: test/test.pass.cpp === --- /dev/nul

Re: [PATCH] D21314: Make pair and tuple respect is_copy_assignable and is_move_assignable

2016-06-13 Thread Eric Fiselier via cfe-commits
EricWF updated this revision to Diff 60636. EricWF added a comment. Get all but 1 test passing. http://reviews.llvm.org/D21314 Files: include/tuple include/utility test/test.pass.cpp Index: test/test.pass.cpp === --- /dev/nu

Re: [PATCH] D21314: Make pair and tuple respect is_copy_assignable and is_move_assignable

2016-06-13 Thread Eric Fiselier via cfe-commits
EricWF updated this revision to Diff 60633. EricWF added a comment. Fix bad #ifdef change in pair. http://reviews.llvm.org/D21314 Files: include/tuple include/utility test/test.pass.cpp Index: test/test.pass.cpp === --- /dev

Re: [PATCH] D21314: Make pair and tuple respect is_copy_assignable and is_move_assignable

2016-06-13 Thread Eric Fiselier via cfe-commits
EricWF retitled this revision from "Make pair respect is_copy_assignable and is_move_assignable" to "Make pair and tuple respect is_copy_assignable and is_move_assignable". EricWF updated this revision to Diff 60631. EricWF added a comment. - Remove `= default` copy/move constructors in pair.