Commit 1ef6649 1 parent 3031e4a commit 1ef6649 Copy full SHA for 1ef6649
File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -184,7 +184,7 @@ class ThreadedIter : public DataIter<DType> {
184
184
* use the other Next instead
185
185
* \return true if there is next record, false if we reach the end
186
186
*/
187
- virtual bool Next (void ) {
187
+ virtual bool Next (void ) override {
188
188
if (out_data_ != NULL ) {
189
189
this ->Recycle (&out_data_);
190
190
}
@@ -199,12 +199,12 @@ class ThreadedIter : public DataIter<DType> {
199
199
* NOTE: the call to this function is not threadsafe
200
200
* use the other Next instead
201
201
*/
202
- virtual const DType &Value (void ) const {
202
+ virtual const DType &Value (void ) const override {
203
203
CHECK (out_data_ != NULL ) << " Calling Value at beginning or end?" ;
204
204
return *out_data_;
205
205
}
206
206
/* ! \brief set the iterator before first location */
207
- virtual void BeforeFirst (void ) {
207
+ virtual void BeforeFirst (void ) override {
208
208
ThrowExceptionIfSet ();
209
209
std::unique_lock<std::mutex> lock (mutex_);
210
210
if (out_data_ != NULL ) {
You can’t perform that action at this time.
0 commit comments