From e8753d02a779fe3a5d3bcee2b5a53e929e377b70 Mon Sep 17 00:00:00 2001 From: Liss Heidrich <31625940+Clueliss@users.noreply.github.com> Date: Thu, 4 Jan 2024 14:17:07 +0100 Subject: [PATCH] reference cppreference --- include/dice/template-library/overloaded.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/dice/template-library/overloaded.hpp b/include/dice/template-library/overloaded.hpp index 7fb8ded..396f12f 100644 --- a/include/dice/template-library/overloaded.hpp +++ b/include/dice/template-library/overloaded.hpp @@ -8,7 +8,7 @@ namespace dice::template_library { * This is primarily useful for things like std::visit where you may want to call a different * function for each type in the std::variant. * - * See examples/examples_overloaded.cpp for a usecase example + * See example on https://en.cppreference.com/w/cpp/utility/variant/visit */ template struct overloaded : Fs... {