Minor changes.

This commit is contained in:
vng 2011-09-22 22:00:33 +03:00 committed by Alex Zolotarev
parent fa6b163e8f
commit f7bf36f540
5 changed files with 7 additions and 3 deletions

View file

@ -1,7 +1,7 @@
#include "index.hpp"
#include "data_header.hpp"
#include "../platform/platform.hpp"
#include "../std/bind.hpp"
MwmValue::MwmValue(string const & name)

View file

@ -63,7 +63,7 @@ UNIT_TEST(SaveLoadPolyline_DataSet1)
TEST(is_equal(data1[i], data2[i]), (data1[i], data2[i]));
}
LOG(LINFO, (data2));
//LOG(LINFO, (data2));
TEST(is_equal(r1, r2), (r1, r2));
}

View file

@ -31,6 +31,9 @@ namespace
{
delete p;
}
public:
~TestMwmSet() { Cleanup(); }
};
} // unnamed namespace

View file

@ -41,6 +41,8 @@ MwmSet::MwmSet(size_t cacheSize)
MwmSet::~MwmSet()
{
// Need do call Cleanup() in derived class.
ASSERT ( m_cache.empty(), () );
}
void MwmSet::Cleanup()

View file

@ -4,7 +4,6 @@
#include "../base/mutex.hpp"
#include "../std/deque.hpp"
#include "../std/function.hpp"
#include "../std/string.hpp"
#include "../std/utility.hpp"
#include "../std/vector.hpp"