Skip to content

Commit 23905ed

Browse files
committed
Inheritence corrections for ESPressio Base
1 parent 049a335 commit 23905ed

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

library.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
{
1919
"name": "Flowduino ESPressio-Base",
2020
"version": "0.0.1",
21-
"url": "https://github.com/Flowduino/ESPressio-Base.git"
21+
"url": "https://github.com/Flowduino/ESPressio-Base.git",
22+
"platforms": "*"
2223
}
2324
]
2425
}

src/ESPressio_IThread.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ namespace ESPressio {
2727
`IThread` is a common Interface for all Thread Types provided by this library.
2828
You can use it to reference any Thread Type without knowing the actual type.
2929
*/
30-
class IThread : public Object {
30+
class IThread : public Object<IThread> {
3131
public:
3232
// Methods
3333

0 commit comments

Comments
 (0)