forked from organicmaps/organicmaps
added std/errno.hpp according to suggestion in code review.
This commit is contained in:
parent
dffeb8b659
commit
d3cf52153c
2 changed files with 20 additions and 2 deletions
|
@ -7,8 +7,7 @@
|
|||
|
||||
#include "../std/stdint.hpp"
|
||||
#include "../std/systime.hpp"
|
||||
|
||||
#include <sys/errno.h>
|
||||
#include "../std/errno.hpp"
|
||||
|
||||
#include <pthread.h>
|
||||
|
||||
|
|
19
std/errno.hpp
Normal file
19
std/errno.hpp
Normal file
|
@ -0,0 +1,19 @@
|
|||
#pragma once
|
||||
|
||||
#include "common_defines.hpp"
|
||||
#include "target_os.hpp"
|
||||
|
||||
#ifdef new
|
||||
#undef new
|
||||
#endif
|
||||
|
||||
// for errno
|
||||
#ifdef OMIM_OS_WINDOWS
|
||||
#include <errno.h>
|
||||
#else
|
||||
#include <sys/errno.h>
|
||||
#endif
|
||||
|
||||
#ifdef DEBUG_NEW
|
||||
#define new DEBUG_NEW
|
||||
#endif
|
Loading…
Add table
Reference in a new issue