OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DeletedCopy
(Results
1 - 2
of
2
) sorted by null
/external/libcxx/test/libcxx/utilities/utility/pairs/pairs.pair/
non_trivial_copy_move_ABI.pass.cpp
71
struct
DeletedCopy
{
72
DeletedCopy
(
DeletedCopy
const&) = delete;
73
DeletedCopy
(
DeletedCopy
&&) = default;
75
static_assert(!HasNonTrivialABI<
DeletedCopy
>::value, "");
128
using P = std::pair<
DeletedCopy
, int>;
trivial_copy_move_ABI.pass.cpp
66
struct
DeletedCopy
{
67
DeletedCopy
(
DeletedCopy
const&) = delete;
68
DeletedCopy
(
DeletedCopy
&&) = default;
70
static_assert(HasTrivialABI<
DeletedCopy
>::value, "");
123
using P = std::pair<
DeletedCopy
, int>;
Completed in 47 milliseconds