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.h
- Revision:
- 13:db9ebea23baf
- Parent:
- 12:e4f557b33732
--- a/linearArray.h	Tue Mar 14 12:24:59 2017 +0000
+++ b/linearArray.h	Fri Mar 17 10:54:09 2017 +0000
@@ -8,7 +8,7 @@
 template<class type>
 class LinearArray {
 	public:
-		LinearArray(int size, bool forced = false);
+		LinearArray(int size, char * name, bool forced = false);
 		~LinearArray();
 		int push(type item);
 		type& pop();