| 147 | } |
| 148 | |
| 149 | std::unique_ptr<KernelArgument::ValueIterator> ScalarArgument::end() const { |
| 150 | ScalarValueIterator *it = new ScalarValueIterator(this); |
| 151 | it->value_it = this->values.end(); |
| 152 | it->null_argument = false; |
| 153 | return std::unique_ptr<ValueIterator>(it); |
| 154 | } |
| 155 | |
| 156 | ////////////////////////////////////////////////////////////////////////////////////////////////// |
| 157 |
no test coverage detected