| 143 | } |
| 144 | |
| 145 | std::unique_ptr<KernelArgument::ValueIterator> ScalarArgument::begin() const { |
| 146 | return std::unique_ptr<KernelArgument::ValueIterator>(new ScalarValueIterator(this)); |
| 147 | } |
| 148 | |
| 149 | std::unique_ptr<KernelArgument::ValueIterator> ScalarArgument::end() const { |
| 150 | ScalarValueIterator *it = new ScalarValueIterator(this); |
no test coverage detected