diff options
Diffstat (limited to 'src/dir.h')
-rw-r--r-- | src/dir.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -9,7 +9,7 @@ namespace GitFS { class Repo; class Directory : public DirectoryV2 { public: - Directory(const Repo * r, const std::string &); + Directory(Repo * const r, const std::string &); void close(const ::Ice::Current& current) override; NameList readdir(const ::Ice::Current& current) override; @@ -17,7 +17,7 @@ namespace GitFS { private: Git::TreePtr getSubtree() const; - const Repo * repo; + Repo * const repo; const std::string path; mutable Git::TreePtr subTreeCache; |