This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository libcxx.
from 5270a84 Test commit; remove some spaces at EOL. No functional change. new ee49613 Implement std::experimental::propagate_const from LFTS v2 new 1d4f1c1 Add entry to CREDITS.TXT for propagate_const
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: CREDITS.TXT | 4 + include/experimental/__config | 4 + include/experimental/propagate_const | 576 +++++++++++++++++++++ .../propagate_const.assignment/assign.pass.cpp | 24 + .../assign_convertible_element_type.pass.cpp | 34 ++ .../assign_convertible_propagate_const.pass.cpp | 25 + .../assign_element_type.pass.cpp | 34 ++ .../move_assign.pass.cpp | 32 ++ .../move_assign_convertible.pass.cpp | 33 ++ ...ove_assign_convertible_propagate_const.pass.cpp | 33 ++ ...convertible_element_type.explicit.ctor.pass.cpp | 28 + ...ertible_element_type.non-explicit.ctor.pass.cpp | 32 ++ .../convertible_propagate_const.copy_ctor.pass.cpp | 26 + ...ble_propagate_const.explicit.move_ctor.pass.cpp | 28 + .../convertible_propagate_const.move_ctor.pass.cpp | 31 ++ .../propagate_const.ctors/copy_ctor.pass.cpp | 24 + .../element_type.explicit.ctor.pass.cpp | 28 + .../element_type.non-explicit.ctor.pass.cpp | 28 + .../propagate_const.ctors/move_ctor.pass.cpp | 28 + .../dereference.pass.cpp | 34 ++ .../explicit_operator_element_type_ptr.pass.cpp | 24 + .../get.pass.cpp | 34 ++ .../op_arrow.pass.cpp | 34 ++ .../operator_element_type_ptr.pass.cpp | 35 ++ .../propagate_const.observers/dereference.pass.cpp | 29 ++ .../explicit_operator_element_type_ptr.pass.cpp | 26 + .../propagate_const.observers/get.pass.cpp | 29 ++ .../propagate_const.observers/op_arrow.pass.cpp | 29 ++ .../operator_element_type_ptr.pass.cpp | 28 + .../propagate_const.class/swap.pass.cpp | 32 ++ .../propagate_const.nonmembers/hash.pass.cpp | 44 ++ .../equal_to.pass.cpp | 36 ++ .../greater.pass.cpp | 38 ++ .../greater_equal.pass.cpp | 38 ++ .../less.pass.cpp | 38 ++ .../less_equal.pass.cpp | 38 ++ .../not_equal_to.pass.cpp | 36 ++ .../propagate_const.relops/equal.pass.cpp | 64 +++ .../propagate_const.relops/greater_equal.pass.cpp | 54 ++ .../propagate_const.relops/greater_than.pass.cpp | 50 ++ .../propagate_const.relops/less_equal.pass.cpp | 55 ++ .../propagate_const.relops/less_than.pass.cpp | 50 ++ .../propagate_const.relops/not_equal.pass.cpp | 62 +++ .../propagate_const.nonmembers/swap.pass.cpp | 31 ++ test/support/propagate_const_helpers.h | 119 +++++ 45 files changed, 2139 insertions(+) create mode 100644 include/experimental/propagate_const create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const [...] create mode 100644 test/support/propagate_const_helpers.h