Skip to content

Commit

Permalink
update ArxContainer to v0.3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
hideakitai committed Apr 2, 2021
1 parent 3e28c4a commit 54861c5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ Please see `custom_class` example for details.
- [Easing v0.1.0](https://github.com/hideakitai/Easing)
- [PollingTimer v0.2.5](https://github.com/hideakitai/PollingTimer)
- [ArxTypeTraits v0.2.1](https://github.com/hideakitai/ArxTypeTraits)
- [ArxContainer v0.3.10](https://github.com/hideakitai/ArxContainer)
- [ArxContainer v0.3.11](https://github.com/hideakitai/ArxContainer)
- [ArxSmartPtr v0.2.1](https://github.com/hideakitai/ArxSmartPtr)
- [TeensyDirtySTLErrorSolution v0.1.0](https://github.com/hideakitai/TeensyDirtySTLErrorSolution)

Expand Down
4 changes: 2 additions & 2 deletions Tween/util/ArxContainer/ArxContainer.h
Original file line number Diff line number Diff line change
Expand Up @@ -179,10 +179,10 @@ namespace arx {
T& operator[] (size_t index) { return get(head_ + (int)index); }

iterator begin() { return ptr(head_); }
iterator end() { return (queue_ + tail_); }
iterator end() { return (queue_ + tail_ + 1); }

const_iterator begin() const { return (const_iterator)ptr(head_); }
const_iterator end() const { return (const_iterator)(queue_ + tail_); }
const_iterator end() const { return (const_iterator)(queue_ + tail_ + 1); }

iterator erase(iterator p)
{
Expand Down
1 change: 0 additions & 1 deletion Tween/util/ArxContainer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,6 @@ PRs are welcome!

- [Packetizer](https://github.com/hideakitai/Packetizer)
- [MsgPack](https://github.com/hideakitai/MsgPack)
- [MsgPacketizer](https://github.com/hideakitai/MsgPacketizer)
- [ArduinoOSC](https://github.com/hideakitai/ArduinoOSC)
- [ArtNet](https://github.com/hideakitai/ArtNet)
- [Tween](https://github.com/hideakitai/Tween)
Expand Down
2 changes: 1 addition & 1 deletion Tween/util/ArxContainer/library.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"url": "https://github.com/hideakitai",
"maintainer": true
},
"version": "0.3.10",
"version": "0.3.11",
"license": "MIT",
"frameworks": "arduino",
"platforms": "*"
Expand Down
2 changes: 1 addition & 1 deletion Tween/util/ArxContainer/library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=ArxContainer
version=0.3.10
version=0.3.11
author=hideakitai
maintainer=hideakitai
sentence=C++ container-like classes (vector, map, etc.) for Arduino which cannot use STL
Expand Down

0 comments on commit 54861c5

Please sign in to comment.