From 530f5452d2b28617286802908671d38b44f6f9e6 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Mon, 29 Jul 2019 20:56:12 +0100 Subject: Fix constness of repo pointers --- src/dir.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/dir.cpp') diff --git a/src/dir.cpp b/src/dir.cpp index 98c05cb..012baa5 100644 --- a/src/dir.cpp +++ b/src/dir.cpp @@ -3,7 +3,7 @@ #include "repo.h" #include "dir.h" -GitFS::Directory::Directory(const Repo * r, const std::string & p) : +GitFS::Directory::Directory(Repo * const r, const std::string & p) : repo(r), path(p), subTreeCacheRootId({}) -- cgit v1.2.3