Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FormerLurker/ArcWelderLib.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'GcodeProcessorLib/array_list.h')
-rw-r--r--GcodeProcessorLib/array_list.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/GcodeProcessorLib/array_list.h b/GcodeProcessorLib/array_list.h
index e5aec2e..90e0cb5 100644
--- a/GcodeProcessorLib/array_list.h
+++ b/GcodeProcessorLib/array_list.h
@@ -64,7 +64,7 @@ public:
inline int get_index_position(int index) const
{
- int index_position = index + front_index_ + max_size_;
+ int index_position = index + front_index_;// + max_size_;
while (index_position >= max_size_)
{
index_position = index_position - max_size_;
@@ -135,7 +135,7 @@ public:
{
throw std::exception();
}
- int pos = get_index_position(count_);
+ int pos = get_index_position(count_-1);
count_--;
return items_[pos];
}