| 60 | |
| 61 | template <typename T> |
| 62 | T* copy(const T* begin, const T* end, T* out) { |
| 63 | for (; begin != end; ++begin) { |
| 64 | *out++ = *begin; |
| 65 | } |
| 66 | return out; |
| 67 | } |
| 68 | |
| 69 | // Does not own the filter and extension. |
| 70 | struct Pair_GtkFileFilter_FileExtension { |
no outgoing calls
no test coverage detected