Skip to content

Commit 9850ad2

Browse files
author
John Wellbelove
committed
Sync to 20.27.3
1 parent 1837320 commit 9850ad2

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Embedded Template Library - Arduino",
3-
"version": "20.27.2",
3+
"version": "20.27.3",
44
"authors": {
55
"name": "John Wellbelove",
66
"email": "[email protected]"

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=Embedded Template Library - Arduino
2-
version=20.27.2
2+
version=20.27.3
33
author= John Wellbelove <[email protected]>
44
maintainer=John Wellbelove <[email protected]>
55
license=MIT

src/etl/reference_counted_message_pool.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ namespace etl
6161
//***************************************************************************
6262
/// Exception if the allocation failed.
6363
//***************************************************************************
64-
class reference_counted_message_pool_allocation_failure : etl::reference_counted_message_pool_exception
64+
class reference_counted_message_pool_allocation_failure : public etl::reference_counted_message_pool_exception
6565
{
6666
public:
6767

@@ -74,7 +74,7 @@ namespace etl
7474
//***************************************************************************
7575
/// Exception if the release failed.
7676
//***************************************************************************
77-
class reference_counted_message_pool_release_failure : etl::reference_counted_message_pool_exception
77+
class reference_counted_message_pool_release_failure : public etl::reference_counted_message_pool_exception
7878
{
7979
public:
8080

src/etl/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ SOFTWARE.
4040

4141
#define ETL_VERSION_MAJOR 20
4242
#define ETL_VERSION_MINOR 27
43-
#define ETL_VERSION_PATCH 2
43+
#define ETL_VERSION_PATCH 3
4444

4545

4646
#define ETL_VERSION ETL_STRINGIFY(ETL_VERSION_MAJOR) "." ETL_STRINGIFY(ETL_VERSION_MINOR) "." ETL_STRINGIFY(ETL_VERSION_PATCH)

0 commit comments

Comments
 (0)