forked from organicmaps/organicmaps
unused-private-field clang warning fix in includes.
This commit is contained in:
parent
340e051584
commit
03fd6120f4
1 changed files with 9 additions and 0 deletions
|
@ -10,9 +10,18 @@
|
|||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#if defined(__clang__)
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Wunused-private-field"
|
||||
#endif
|
||||
|
||||
#include "3party/succinct/elias_fano.hpp"
|
||||
#include "3party/succinct/mapper.hpp"
|
||||
|
||||
#if defined(__clang__)
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
|
||||
namespace platform
|
||||
{
|
||||
class LocalCountryFile;
|
||||
|
|
Loading…
Add table
Reference in a new issue