Ticket #2505: grep_test.cpp.patch

File grep_test.cpp.patch, 502 bytes (added by Niklas Angare <li51ckf02@…>, 14 years ago)
  • libs/iostreams/test/grep_test.cpp

     
    253253                  const std::string& output )
    254254{
    255255    // Count lines in output
    256     ptrdiff_t count = std::count(output.begin(), output.end(), '\n');
     256    std::ptrdiff_t count = std::count(output.begin(), output.end(), '\n');
    257257
    258258    // Test as input filter
    259259    {