patch-kcregex_h 511 B

12345678910111213141516
  1. $OpenBSD: patch-kcregex_h,v 1.1.1.1 2012/08/29 14:32:51 ajacoutot Exp $
  2. /usr/local/include/kcregex.h:35: error: comma at end of enumerator list
  3. --- kcregex.h.orig Wed Aug 29 14:56:59 2012
  4. +++ kcregex.h Wed Aug 29 14:57:13 2012
  5. @@ -32,7 +32,7 @@ class Regex {
  6. */
  7. enum Option {
  8. IGNCASE = 1 << 0, ///< case-insensitive
  9. - MATCHONLY = 1 << 1, ///< matching only
  10. + MATCHONLY = 1 << 1 ///< matching only
  11. };
  12. /**
  13. * Default constructor.