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.
Fork of SOFT253_Template_Weather_OS_54 by
Diff: LinkedList.cpp
- Branch:
- feature/listOptimisation
- Revision:
- 63:cb7b9d2ccfa5
- Parent:
- 62:9cea49a2600d
diff -r 9cea49a2600d -r cb7b9d2ccfa5 LinkedList.cpp
--- a/LinkedList.cpp Fri Apr 07 12:43:03 2017 +0000
+++ b/LinkedList.cpp Fri Apr 07 15:58:40 2017 +0000
@@ -18,7 +18,7 @@
n->measure = _measure;
n->next = head;
- head = n;
+ head = n;
currentSize++;
}
