From fcbe7a44d6f3da109bfae8e7edbc971662147a5e Mon Sep 17 00:00:00 2001 From: Daniel Kral Date: Fri, 26 Dec 2025 12:21:38 +0100 Subject: [PATCH] Change `const T` to `const T&` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 50066b7..41aa3ee 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Flyweights are small-sized handle classes granting constant access to shared common data, thus allowing for the management of large amounts of entities within reasonable memory limits. Boost.Flyweight makes it easy to use this common programming -idiom by providing the class template `flyweight`, which acts as a drop-in replacement for `const T`. +idiom by providing the class template `flyweight`, which acts as a drop-in replacement for `const T&`. ## Learn about Boost.Flyweight