forked from organicmaps/organicmaps
Minor changes.
This commit is contained in:
parent
fa6b163e8f
commit
f7bf36f540
5 changed files with 7 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
|||
#include "index.hpp"
|
||||
#include "data_header.hpp"
|
||||
|
||||
#include "../platform/platform.hpp"
|
||||
#include "../std/bind.hpp"
|
||||
|
||||
|
||||
MwmValue::MwmValue(string const & name)
|
||||
|
|
|
@ -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));
|
||||
}
|
||||
|
|
|
@ -31,6 +31,9 @@ namespace
|
|||
{
|
||||
delete p;
|
||||
}
|
||||
|
||||
public:
|
||||
~TestMwmSet() { Cleanup(); }
|
||||
};
|
||||
} // unnamed namespace
|
||||
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue