~bibledit/bibledit/ubuntu-cloud

« back to all changes in this revision

Viewing changes to unittests/statistics.cpp

  • Committer: Teus Benschop
  • Date: 2022-08-30 18:42:32 UTC
  • Revision ID: teusjannette@gmail.com-20220830184232-a5bf5fkj14cqdx01
new upstream version

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
    
38
38
    int one_thousand = 1000;
39
39
    int two_thousand = 2000;
40
 
    int now = filter_date_seconds_since_epoch ();
 
40
    int now = filter::date::seconds_since_epoch ();
41
41
    int now_plus_one = now + 1;
42
42
    
43
43
    // Record some statistics.
65
65
    evaluate (__LINE__, __func__, size, changes.size ());
66
66
    
67
67
    // Sort the change statistics most recent first.
68
 
    if ((int)changes.size () == size) {
 
68
    if (static_cast<int>(changes.size ()) == size) {
69
69
      evaluate (__LINE__, __func__, now - one_thousand, changes[0].first);
70
70
      evaluate (__LINE__, __func__, 31, changes[0].second);
71
71
      evaluate (__LINE__, __func__, now - two_thousand, changes[1].first);