@@ -180,20 +180,20 @@ class API_EXPORT CAnomalyJob : public CDataProcessor
180180 const std::string &timeFieldFormat = EMPTY_STRING,
181181 size_t maxAnomalyRecords = 0u );
182182
183- virtual ~CAnomalyJob (void );
183+ virtual ~CAnomalyJob ();
184184
185185 // ! We're going to be writing to a new output stream
186- virtual void newOutputStream (void );
186+ virtual void newOutputStream ();
187187
188188 // ! Access the output handler
189- virtual COutputHandler &outputHandler (void );
189+ virtual COutputHandler &outputHandler ();
190190
191191 // ! Receive a single record to be processed, and produce output
192192 // ! with any required modifications
193193 virtual bool handleRecord (const TStrStrUMap &dataRowFields);
194194
195195 // ! Perform any final processing once all input data has been seen.
196- virtual void finalise (void );
196+ virtual void finalise ();
197197
198198 // ! Restore previously saved state
199199 virtual bool restoreState (core::CDataSearcher &restoreSearcher,
@@ -206,13 +206,13 @@ class API_EXPORT CAnomalyJob : public CDataProcessor
206206 virtual bool initNormalizer (const std::string &quantilesStateFile);
207207
208208 // ! How many records did we handle?
209- virtual uint64_t numRecordsHandled (void ) const ;
209+ virtual uint64_t numRecordsHandled () const ;
210210
211211 // ! Log a list of the detectors and keys
212- void description (void ) const ;
212+ void description () const ;
213213
214214 // ! Log a list of the detectors, keys and their memory usage
215- void descriptionAndDebugMemoryUsage (void ) const ;
215+ void descriptionAndDebugMemoryUsage () const ;
216216
217217 // ! Extra information on the success/failure of restoring the model state.
218218 // ! In certain situations such as no data being loaded from the restorer
@@ -320,7 +320,7 @@ class API_EXPORT CAnomalyJob : public CDataProcessor
320320
321321 // ! Get the bucketLength, or half the bucketLength if
322322 // ! out-of-phase buckets are active
323- core_t ::TTime effectiveBucketLength (void ) const ;
323+ core_t ::TTime effectiveBucketLength () const ;
324324
325325 // ! Update configuration
326326 void updateConfig (const std::string &config);
@@ -372,7 +372,7 @@ class API_EXPORT CAnomalyJob : public CDataProcessor
372372
373373 // ! Iterate over the models, refresh their memory status, and send a report
374374 // ! to the API
375- void refreshMemoryAndReport (void );
375+ void refreshMemoryAndReport ();
376376
377377 // ! Update configuration
378378 void doForecast (const std::string &controlMessage);
@@ -418,7 +418,7 @@ class API_EXPORT CAnomalyJob : public CDataProcessor
418418 model::CResourceMonitor &resourceMonitor);
419419
420420 // ! Prune all the models
421- void pruneAllModels (void );
421+ void pruneAllModels ();
422422
423423 private:
424424 // ! The job ID
0 commit comments