Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/coding
diff options
context:
space:
mode:
authorАлександр Зацепин <az@mapswithme.com>2019-03-26 18:08:59 +0300
committerAlexuser1 <a.blinchikov@mapswithme.com>2019-04-02 11:01:21 +0300
commit81559c4c2a88e93fde15f60b8dc20b8d0750c278 (patch)
tree69ed2d647303e68d218c2329f3b49ca16ac889aa /coding
parent9a707524283cff0f4509521bedcb19d48074c39f (diff)
[android][core][ndk] Added ARM64 support
Diffstat (limited to 'coding')
-rw-r--r--coding/internal/file64_api.hpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/coding/internal/file64_api.hpp b/coding/internal/file64_api.hpp
index 25d51dda14..10f424509d 100644
--- a/coding/internal/file64_api.hpp
+++ b/coding/internal/file64_api.hpp
@@ -21,9 +21,7 @@
#else
// POSIX standart.
#include <sys/types.h>
- #ifdef OMIM_OS_ANDROID
- static_assert(sizeof(off_t) == 4, "");
- #else
+ #ifndef OMIM_OS_ANDROID
static_assert(sizeof(off_t) == 8, "");
#endif
#define fseek64 fseeko