forked from organicmaps/organicmaps
supporting benchmark only in production configuration.
This commit is contained in:
parent
6b8d7cbe43
commit
c152581524
1 changed files with 16 additions and 1 deletions
|
@ -3,6 +3,8 @@
|
|||
#include "../base/assert.hpp"
|
||||
#include "../base/macros.hpp"
|
||||
#include "../base/timer.hpp"
|
||||
#include "../base/logging.hpp"
|
||||
#include "../defines.hpp"
|
||||
|
||||
#include <QtCore/QDir>
|
||||
#include <QtCore/QFileInfo>
|
||||
|
@ -382,7 +384,20 @@ public:
|
|||
|
||||
bool IsBenchmarking() const
|
||||
{
|
||||
return false;
|
||||
bool res = true;
|
||||
#ifndef OMIM_PRODUCTION
|
||||
if (res)
|
||||
{
|
||||
static bool first = true;
|
||||
if (first)
|
||||
{
|
||||
LOG(LCRITICAL, ("benchmarking only defined in production configuration"));
|
||||
first = false;
|
||||
}
|
||||
res = false;
|
||||
}
|
||||
#endif
|
||||
return res;
|
||||
}
|
||||
|
||||
string const DeviceID() const
|
||||
|
|
Loading…
Add table
Reference in a new issue