| 285 | |
| 286 | FL_SUBCASE("Custom type with inlined storage") { |
| 287 | struct TestStruct { |
| 288 | int value; |
| 289 | TestStruct(int v = 0) : value(v) {} |
| 290 | bool operator<(const TestStruct& other) const { return value < other.value; } |
| 291 | bool operator==(const TestStruct& other) const { return value == other.value; } |
| 292 | }; |
| 293 | |
| 294 | fl::set_inlined<TestStruct, 3> set; |
| 295 |