Radu-Adrian Marcu / Mbed OS SOFT253_GroupA_AssignmentRepo

Dependencies:   LPS25H hts221

Fork of SOFT253_Template_Weather_OS_54 by Stage-1 Students SoCEM

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++;              
 }