File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ add_library(dfly_search_core base.cc ast_expr.cc query_driver.cc search.cc indic
10
10
range_tree.cc synonyms.cc ${gen_dir} /parser.cc ${gen_dir} /lexer.cc)
11
11
12
12
target_link_libraries (dfly_search_core base redis_lib absl::strings
13
- TRDP::reflex TRDP::uni-algo TRDP::hnswlib)
13
+ TRDP::reflex TRDP::uni-algo TRDP::hnswlib Boost::headers )
14
14
15
15
if (WITH_SIMSIMD)
16
16
target_link_libraries (dfly_search_core TRDP::simsimd)
Original file line number Diff line number Diff line change 8
8
#include < absl/container/flat_hash_map.h>
9
9
#include < absl/container/flat_hash_set.h>
10
10
11
+ // Wrong warning reported when geometry.hpp is loaded
12
+ #ifndef __clang__
13
+ #pragma GCC diagnostic push
14
+ #pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
15
+ #endif
11
16
#include < boost/geometry.hpp>
17
+ #ifndef __clang__
18
+ #pragma GCC diagnostic pop
19
+ #endif
20
+
12
21
#include < map>
13
22
#include < memory>
14
23
#include < optional>
You can’t perform that action at this time.
0 commit comments