mirror of https://github.com/CGAL/cgal
Fix in Arr_counting_traits_2.h
This commit is contained in:
parent
15d788ef29
commit
637d61c974
|
|
@ -885,7 +885,7 @@ public:
|
||||||
|
|
||||||
/*! Clean all operation counters */
|
/*! Clean all operation counters */
|
||||||
void clear_counters()
|
void clear_counters()
|
||||||
{ memset(m_counters, 0, sizeof(m_counters)); }
|
{ memset_s(m_counters, sizeof(m_counters), 0, sizeof(m_counters)); }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
/*! The operation counters */
|
/*! The operation counters */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue