From 2a948431b10f9cd468d020b797be24c197b241e6 Mon Sep 17 00:00:00 2001 From: Alexander Mandera <alexander@mandera.eu> Date: Sun, 21 May 2023 15:45:41 +0200 Subject: [PATCH] Fix error when using C++ virtual methods --- examples/cpp_virtual_methods/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/cpp_virtual_methods/README.md b/examples/cpp_virtual_methods/README.md index 14f14ba..d4ff847 100644 --- a/examples/cpp_virtual_methods/README.md +++ b/examples/cpp_virtual_methods/README.md @@ -12,7 +12,7 @@ vtable for 'ExampleClass' @ 0x0 (subobject @ 0x20000004): In this case, a call to a virtual method will result to an invalid call and the program won't work as expected. -Here, the program will also print out `Begin example`, but does not print any values. +Here, the program will only print out `Begin example`, but does not print any values. It seems like the MCU resets here. In other environments like with the Arduino Core, the hard fault handler is called -- GitLab