Warning and compilation fixes

This commit is contained in:
Alex Zolotarev 2014-08-09 19:41:29 +03:00 committed by Alex Zolotarev
parent 1c8675c1d5
commit bf315c3208
4 changed files with 8 additions and 7 deletions

View file

@ -104,6 +104,7 @@ bool nvValidTimeExtension()
return false;
else
return true;*/
return false;
}
long nvGetSystemTime()

View file

@ -83,14 +83,12 @@ namespace core
Chain();
template <typename fun_tt>
Chain(fun_tt fn)
Chain(function_t const & fn)
{
m_fns.push_back(fn);
}
template <typename fun_tt>
Chain & addCommand(fun_tt fn)
Chain & addCommand(function_t const & fn)
{
m_fns.push_back(fn);
return *this;

View file

@ -9,7 +9,7 @@ namespace graphics
#ifndef OMIM_OS_IPHONE
namespace
{
void emptyFlushFn() {}
void OPENGL_CALLING_CONVENTION emptyFlushFn() {}
}
#endif

View file

@ -4,7 +4,9 @@
#define OMIM_OS_ANDROID
#define OMIM_OS_NAME "android"
#define OMIM_OS_MOBILE
#define OMIM_HAS_DEBUG_STL 1
#if __cplusplus <= 199711L
#define OMIM_HAS_DEBUG_STL 1
#endif
#elif defined(_TIZEN_EMULATOR) || defined(_TIZEN_DEVICE)
#define OMIM_OS_TIZEN
@ -49,5 +51,5 @@
#define OMIM_OS_NAME "linux"
#define OMIM_OS_DESKTOP
#define OMIM_HAS_DEBUG_STL 1
#endif