Helper to create shared_ptr with known value
| 45 | |
| 46 | // Helper to create shared_ptr with known value |
| 47 | inline fl::shared_ptr<int> make_shared_int(int value) { |
| 48 | return fl::make_shared<int>(value); |
| 49 | } |
| 50 | |
| 51 | // ============================================================================ |
| 52 | // Type Traits for Container Detection |
no outgoing calls
no test coverage detected