any_helpers.h | 99 struct small_type struct 108 small_type::copied = 0; 109 small_type::moved = 0; 110 small_type::const_copied = 0; 111 small_type::non_const_copied = 0; 116 explicit small_type(int val = 0) : value(val) { function in struct:small_type 119 explicit small_type(int, int val, int) : value(val) { function in struct:small_type 122 small_type(std::initializer_list<int> il) : value(*il.begin()) { function in struct:small_type 126 small_type(small_type const & other) noexcept [all...] |