patch-Outputter.cpp 371 B

12345678910111213
  1. --- ./Outputter.cpp.orig 2008-08-23 04:00:12.000000000 -0700
  2. +++ ./Outputter.cpp 2011-12-30 17:37:16.000000000 -0800
  3. @@ -459,8 +459,8 @@
  4. if (condition)
  5. {
  6. - line.erase(start, strlen(tag));
  7. - line.erase(finish - strlen(tag), 9);
  8. + line.erase(start, std::strlen(tag));
  9. + line.erase(finish - std::strlen(tag), 9);
  10. begin = finish - strlen(tag) - 9;
  11. }