Changeset 4200 for trunk/test/segment.cc


Ignore:
Timestamp:
Aug 19, 2022, 9:01:47 AM (9 months ago)
Author:
Peter
Message:

removing trailing whitespace and empty lines at bottom of files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/segment.cc

    r4032 r4200  
    103103
    104104
    105 void test_compare_(test::Suite& suite, double lhs_begin, double lhs_end, 
     105void test_compare_(test::Suite& suite, double lhs_begin, double lhs_end,
    106106                   double rhs_begin, double rhs_end, int expected)
    107107{
    108   int result = compare_3way(Segment<double>(lhs_begin,lhs_end), 
     108  int result = compare_3way(Segment<double>(lhs_begin,lhs_end),
    109109                            Segment<double>(rhs_begin,rhs_end));
    110110  if (result!=expected) {
     
    122122}
    123123
    124 void test_compare(test::Suite& suite, double lhs_begin, double lhs_end, 
     124void test_compare(test::Suite& suite, double lhs_begin, double lhs_end,
    125125                  double rhs_begin, double rhs_end, int expected)
    126126{
     
    138138  test_compare(suite, 0, 10, -5, 0, 1);
    139139  test_compare(suite, 0, 10, -5, -1, 1);
    140   // zero sized 
     140  // zero sized
    141141  test_compare(suite, 0, 0, 20, 30, -1);
    142142  test_compare(suite, 0, 0, 0, 1, -1);
     
    205205    suite.add(false);
    206206    suite.err() << "error: expected segment to be [0, 2)\n"
    207                 << "found: [" << set.begin()->begin() 
     207                << "found: [" << set.begin()->begin()
    208208                << ", " << set.begin()->end() << ")\n";
    209209  }
Note: See TracChangeset for help on using the changeset viewer.