aboutsummaryrefslogtreecommitdiff
path: root/src/libutil/ref.hh
diff options
context:
space:
mode:
authorkvtb <76634406+kvtb@users.noreply.github.com>2021-10-13 18:03:33 +0000
committerGitHub <noreply@github.com>2021-10-13 18:03:33 +0000
commiteae29b0385981a2a1cc792bdb6551d558f4fa6d3 (patch)
tree3a79e7b9ff1528d25a709c3b8746baf625aecfc1 /src/libutil/ref.hh
parent4c0cde95ad8dc95f876e5cf32790e73e08f49b28 (diff)
fix build with gcc11
Diffstat (limited to 'src/libutil/ref.hh')
-rw-r--r--src/libutil/ref.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/ref.hh b/src/libutil/ref.hh
index d6bf53bb8..347b81f73 100644
--- a/src/libutil/ref.hh
+++ b/src/libutil/ref.hh
@@ -17,7 +17,7 @@ private:
public:
- ref<T>(const ref<T> & r)
+ ref(const ref<T> & r)
: p(r.p)
{ }