Changeset 10456 in webkit for trunk/JavaScriptCore/kjs/regexp.h
- Timestamp:
- Sep 3, 2005, 6:18:13 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/regexp.h
r9768 r10456 49 49 50 50 UString match(const UString &s, int i, int *pos = 0, int **ovector = 0); 51 u intsubPatterns() const { return _numSubPatterns; }51 unsigned subPatterns() const { return _numSubPatterns; } 52 52 53 53 private: … … 58 58 #endif 59 59 int _flags; 60 u int_numSubPatterns;60 unsigned _numSubPatterns; 61 61 62 62 RegExp(const RegExp &);
Note:
See TracChangeset
for help on using the changeset viewer.