Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: linearArray.hpp
- Revision:
- 12:e4f557b33732
- Parent:
- 10:864b79e79ca8
- Child:
- 13:db9ebea23baf
--- a/linearArray.hpp Tue Mar 14 12:12:53 2017 +0000
+++ b/linearArray.hpp Tue Mar 14 12:24:59 2017 +0000
@@ -1,7 +1,5 @@
-//Serial pc(PTE0,NC);
-
template<class type>
LinearArray<type>::LinearArray(int size, bool forced) :
_elem_count(0), _array_size(size), _front(0), _rear(-1), _forced(forced) {