Document block_size option in deque_options.

This commit is contained in:
Ion Gaztañaga
2024-05-21 14:08:36 +02:00
parent 20ad12f20e
commit 59d760c08b
26 changed files with 712 additions and 359 deletions
+12
View File
@@ -37,6 +37,11 @@ struct is_move_assignable
static const bool value = true;
};
template<class T>
struct is_move_constructible
{
static const bool value = true;
};
/////////////////////////
@@ -594,6 +599,13 @@ struct life_count< non_copymovable_int >
{ return c == non_copymovable_int::count; }
};
template<>
struct is_move_constructible<non_copymovable_int>
{
static const bool value = false;
};
} //namespace test {
} //namespace container {
} //namespace boost {