Removed unused method

This commit is contained in:
Momin Al-Ghosien 2024-04-30 16:21:00 -07:00 committed by Lane.Wei
parent 59c3bc2cbe
commit 7b52c24d60
2 changed files with 0 additions and 6 deletions

View File

@ -107,11 +107,6 @@ void LinesBucketQueue::emplace_back_bucket(ExtrusionLayers &&els, const void *ob
}
}
void LinesBucketQueue::reserve(size_t count)
{
line_buckets.reserve(count);
}
// remove lowest and get the current bottom z
float LinesBucketQueue::getCurrBottomZ()
{

View File

@ -114,7 +114,6 @@ public:
public:
void emplace_back_bucket(ExtrusionLayers &&els, const void *objPtr, Point offset);
void reserve(size_t count);
bool valid() const { return line_bucket_ptr_queue.empty() == false; }
float getCurrBottomZ();
LineWithIDs getCurLines() const;