]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/i18n/repattrn.cpp
ICU-8.11.4.tar.gz
[apple/icu.git] / icuSources / i18n / repattrn.cpp
index ba0c4ae26d5f22742a79ef13181e7c2e67b82e91..bcd11078c4537a585906f23d18d46ffa4eb076be 100644 (file)
@@ -3,7 +3,7 @@
 //
 /*
 ***************************************************************************
-*   Copyright (C) 2002-2004 International Business Machines Corporation   *
+*   Copyright (C) 2002-2006 International Business Machines Corporation   *
 *   and others. All rights reserved.                                      *
 ***************************************************************************
 */
@@ -36,7 +36,7 @@ RegexPattern::RegexPattern() {
 
     // Lazy init of all shared global sets.
     RegexStaticSets::initGlobals(&fDeferredStatus);
-};
+}
 
 
 //--------------------------------------------------------------------------
@@ -200,7 +200,7 @@ void RegexPattern::zap() {
 //--------------------------------------------------------------------------
 RegexPattern::~RegexPattern() {
     zap();
-};
+}
 
 
 //--------------------------------------------------------------------------
@@ -211,7 +211,7 @@ RegexPattern::~RegexPattern() {
 RegexPattern  *RegexPattern::clone() const { 
     RegexPattern  *copy = new RegexPattern(*this);
     return copy;
-};
+}
 
 
 //--------------------------------------------------------------------------
@@ -271,7 +271,7 @@ RegexPattern::compile(const UnicodeString &regex,
     compiler.compile(regex, pe, status);
 
     return This;
-};
+}
     
 //
 //   compile with default flags.
@@ -322,8 +322,9 @@ RegexMatcher *RegexPattern::matcher(const UnicodeString &input,
         retMatcher->reset(input);
     }
     return retMatcher;
-};
+}
 
+#if 0
 RegexMatcher *RegexPattern::matcher(const UChar * /*input*/,
                                     UErrorCode          &status)  const 
 {
@@ -333,7 +334,7 @@ RegexMatcher *RegexPattern::matcher(const UChar * /*input*/,
     }
     return NULL;
 }
-
+#endif
 
 //---------------------------------------------------------------------
 //
@@ -357,7 +358,7 @@ RegexMatcher *RegexPattern::matcher(UErrorCode &status)  const {
         return NULL;
     }
     return retMatcher;
-};
+}