mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-11 17:02:25 +00:00
17 lines
338 B
C++
17 lines
338 B
C++
#pragma once
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Wambiguous-reversed-operator"
|
|
#endif
|
|
|
|
#include <s2/s2latlng.h>
|
|
#include <s2/s2cell_id.h>
|
|
#include <s2/s2point.h>
|
|
#include <s2/s2latlng_rect.h>
|
|
#include <s2/s2cap.h>
|
|
#include <s2/s1angle.h>
|
|
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|