From bfce48346644e89e503b4dba8d3f99884ba2b06a Mon Sep 17 00:00:00 2001 From: Dirk Reinbach Date: Tue, 7 Jan 2025 09:14:07 +0100 Subject: [PATCH] Update README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 16340bf..60afacb 100644 --- a/README.md +++ b/README.md @@ -119,6 +119,7 @@ This implementation shows once again that polymorphism can be easily combined wi There have been some exciting projects dedicated to this topic for a long time: - [Dyno: Runtime polymorphism done right](https://github.com/ldionne/dyno) - [Boost.TypeErasure](https://www.boost.org/doc/libs/1_86_0/doc/html/boost_typeerasure.html) +- [Cpp Dyn](https://github.com/qnope/CppDyn) - ... But new implementations are also emerging more recently, e.g. [Proxy: Next Generation Polymorphism in C++](https://github.com/microsoft/proxy).