Commit d4d7612b5b14ad3b1fb2e21e04017369931ae203

Authored by Jay Berkenbilt
1 parent e8b845dd

Note about std::regex attempt

Showing 1 changed file with 5 additions and 0 deletions
@@ -306,3 +306,8 @@ Index: QPDFWriter.cc @@ -306,3 +306,8 @@ Index: QPDFWriter.cc
306 306
307 * From github issue 2, provide more in-depth output for examining 307 * From github issue 2, provide more in-depth output for examining
308 hint stream contents. 308 hint stream contents.
  309 +
  310 + * An attempt was made to replace pcre with std::regex, but it failed
  311 + because std::regex lacks some features of PCRE that we use and
  312 + because the result was many times slower. The work was saved in
  313 + refs/attic/std-regex on github.