From 80ef143ef21b42314ad397301f8073b17718a923 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Wed, 2 Nov 2022 15:52:38 +0100 Subject: [PATCH] fixup! WIP: posts: add mutiple-dispatch-in-c++ --- content/posts/2022-06-07-multiple-dispatch-in-c++/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/posts/2022-06-07-multiple-dispatch-in-c++/index.md b/content/posts/2022-06-07-multiple-dispatch-in-c++/index.md index 17cdfa6..f5a307e 100644 --- a/content/posts/2022-06-07-multiple-dispatch-in-c++/index.md +++ b/content/posts/2022-06-07-multiple-dispatch-in-c++/index.md @@ -96,7 +96,7 @@ For example, a dummy file-system interface might look like the following: ```cpp struct Filesystem { virtual void write(std::string_view filename, std::span data) = 0; - virtual std::vector read(std::string_view filename) = 0; + virtual std::vector read(std::string_view filename) = 0; virtual void delete(std::string_view filename) = 0; }; ```