diff --git a/content/posts/2022-11-02-multiple-dispatch-in-c++/index.md b/content/posts/2022-11-02-multiple-dispatch-in-c++/index.md index e092cd0..31216a4 100644 --- a/content/posts/2022-11-02-multiple-dispatch-in-c++/index.md +++ b/content/posts/2022-11-02-multiple-dispatch-in-c++/index.md @@ -284,9 +284,9 @@ This is the downside I was pointing out in our previous sections: `std::visit` call to handle the new variant. There is currently no (good) way in standard C++ to tackle the Expression -Problem. A paper ([Open Multi Methods for C++][N2216]) was written to propose -a new language feature to improve the situation. However it looks quite complex, -and never got followed up on for standardization. +Problem. A paper ([N2216][N2216]) was written to propose a new language feature +to improve the situation. However it looks quite complex, and never got followed +up on for standardization. [N2216]: https://open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2216.pdf