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.
Dependencies: ConfigFile SDFileSystem mbed
Fork of LAURUS_program by
Diff: Vector/Vector.h
- Revision:
- 23:79cdc1432160
- Parent:
- 13:df1e8a650185
--- a/Vector/Vector.h Tue Jun 23 15:23:38 2015 +0000
+++ b/Vector/Vector.h Wed Jun 24 16:16:14 2015 +0000
@@ -1,5 +1,5 @@
#pragma once
-#include "ErrorLogger.h"
+#include "mbed.h"
class Matrix;
@@ -33,7 +33,7 @@
}
inline float GetComp(int dimNo) const {
- if (dimNo > dim) AbortWithMsg("Index Out of Bounds Error !!");
+ if (dimNo > dim) error("Index Out of Bounds Error !!");
return components[dimNo-1];
}
