mirror of https://github.com/CGAL/cgal
Fix used uninitialized warning
This commit is contained in:
parent
ec9b5fa21c
commit
be7de12acb
|
|
@ -45,7 +45,7 @@ struct Node_1
|
||||||
void set_time_stamp(const std::size_t& ts) {
|
void set_time_stamp(const std::size_t& ts) {
|
||||||
time_stamp_ = ts;
|
time_stamp_ = ts;
|
||||||
}
|
}
|
||||||
std::size_t time_stamp_;
|
std::size_t time_stamp_ = std::size_t(-2);
|
||||||
};
|
};
|
||||||
|
|
||||||
class Node_2
|
class Node_2
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue