diff options
| author | Eric Schendel <esche@sourceforge.net> | 2002-09-16 17:32:46 +0000 |
|---|---|---|
| committer | Eric Schendel <esche@sourceforge.net> | 2002-09-16 17:32:46 +0000 |
| commit | 90a08ec35df981da24c5c577a00665f07f2f49c1 (patch) | |
| tree | ef3bec891e5e9332fea6424952f6338f70002525 /include/cppunit | |
| parent | 4d1b49e5049f64b8e1df2eb705c241a9db921a2a (diff) | |
| download | cppunit-90a08ec35df981da24c5c577a00665f07f2f49c1.tar.gz | |
Added comparator to set
Diffstat (limited to 'include/cppunit')
| -rw-r--r-- | include/cppunit/extensions/TestFactoryRegistry.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/cppunit/extensions/TestFactoryRegistry.h b/include/cppunit/extensions/TestFactoryRegistry.h index 8109d40..fc8723e 100644 --- a/include/cppunit/extensions/TestFactoryRegistry.h +++ b/include/cppunit/extensions/TestFactoryRegistry.h @@ -165,7 +165,7 @@ private: void operator =( const TestFactoryRegistry © ); private: - typedef CppUnitSet<TestFactory *> Factories; + typedef CppUnitSet<TestFactory *, std::less<TestFactory*> > Factories; Factories m_factories; std::string m_name; |
