]> git.tdb.fi Git - libs/core.git/blobdiff - source/strings/regmatch.h
Use C++11 features with containers
[libs/core.git] / source / strings / regmatch.h
index c5116cdc5408ec7238c65f6a250feb9bc23f8308..b79104bad530f9f6846791e97cda7771f9252d37 100644 (file)
@@ -36,10 +36,8 @@ public:
                operator bool() const { return match; }
        };
 
-       typedef std::vector<Group> GroupArray;
-
 private:
-       GroupArray groups;
+       std::vector<Group> groups;
 
 public:
        /** Constructs a RegMatch representing a non-match. */