| 835 | } |
| 836 | |
| 837 | std::vector<std::shared_ptr<spvr::SpvrStream>> AppStreamList::CopyStreams() { |
| 838 | std::lock_guard<std::mutex> guard(streams_mtx_); |
| 839 | std::vector<std::shared_ptr<spvr::SpvrStream>> items; |
| 840 | items.insert(items.begin(), streams_.begin(), streams_.end()); |
| 841 | return items; |
| 842 | } |
| 843 | |
| 844 | } |
nothing calls this directly
no outgoing calls
no test coverage detected