@@ -171,20 +171,20 @@ class API_EXPORT CAnomalyJob : public CDataProcessor
171171 const std::string &timeFieldFormat = EMPTY_STRING,
172172 size_t maxAnomalyRecords = 0u );
173173
174- virtual ~CAnomalyJob (void );
174+ virtual ~CAnomalyJob ();
175175
176176 // ! We're going to be writing to a new output stream
177- virtual void newOutputStream (void );
177+ virtual void newOutputStream ();
178178
179179 // ! Access the output handler
180- virtual COutputHandler &outputHandler (void );
180+ virtual COutputHandler &outputHandler ();
181181
182182 // ! Receive a single record to be processed, and produce output
183183 // ! with any required modifications
184184 virtual bool handleRecord (const TStrStrUMap &dataRowFields);
185185
186186 // ! Perform any final processing once all input data has been seen.
187- virtual void finalise (void );
187+ virtual void finalise ();
188188
189189 // ! Restore previously saved state
190190 virtual bool restoreState (core::CDataSearcher &restoreSearcher,
@@ -197,13 +197,13 @@ class API_EXPORT CAnomalyJob : public CDataProcessor
197197 virtual bool initNormalizer (const std::string &quantilesStateFile);
198198
199199 // ! How many records did we handle?
200- virtual uint64_t numRecordsHandled (void ) const ;
200+ virtual uint64_t numRecordsHandled () const ;
201201
202202 // ! Log a list of the detectors and keys
203- void description (void ) const ;
203+ void description () const ;
204204
205205 // ! Log a list of the detectors, keys and their memory usage
206- void descriptionAndDebugMemoryUsage (void ) const ;
206+ void descriptionAndDebugMemoryUsage () const ;
207207
208208 // ! Extra information on the success/failure of restoring the model state.
209209 // ! In certain situations such as no data being loaded from the restorer
@@ -311,7 +311,7 @@ class API_EXPORT CAnomalyJob : public CDataProcessor
311311
312312 // ! Get the bucketLength, or half the bucketLength if
313313 // ! out-of-phase buckets are active
314- core_t ::TTime effectiveBucketLength (void ) const ;
314+ core_t ::TTime effectiveBucketLength () const ;
315315
316316 // ! Update configuration
317317 void updateConfig (const std::string &config);
@@ -363,7 +363,7 @@ class API_EXPORT CAnomalyJob : public CDataProcessor
363363
364364 // ! Iterate over the models, refresh their memory status, and send a report
365365 // ! to the API
366- void refreshMemoryAndReport (void );
366+ void refreshMemoryAndReport ();
367367
368368 // ! Update configuration
369369 void doForecast (const std::string &controlMessage);
@@ -409,7 +409,7 @@ class API_EXPORT CAnomalyJob : public CDataProcessor
409409 model::CResourceMonitor &resourceMonitor);
410410
411411 // ! Prune all the models
412- void pruneAllModels (void );
412+ void pruneAllModels ();
413413
414414 private:
415415 // ! The job ID
0 commit comments