Fix initialization warning

This commit is contained in:
Mael Rouxel-Labbé 2023-11-22 16:13:21 +01:00
parent 2bc087a139
commit f042f5a8eb
1 changed files with 3 additions and 3 deletions

View File

@ -197,11 +197,11 @@ public:
Alpha_wrapper_3(const Oracle& oracle)
:
#ifdef CGAL_AW3_USE_SORTED_PRIORITY_QUEUE
m_queue(4096),
#endif
m_oracle(oracle),
m_tr(Geom_traits(oracle.geom_traits()))
#ifdef CGAL_AW3_USE_SORTED_PRIORITY_QUEUE
, m_queue(4096)
#endif
{
static_assert(std::is_floating_point<FT>::value);
}