From d13f6bb870cdda71257f665367be8ef9fca86255 Mon Sep 17 00:00:00 2001 From: Mikaƫl Capelle Date: Tue, 17 May 2022 11:47:01 +0200 Subject: Apply clang-format. --- src/virtualfiletree.h | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'src/virtualfiletree.h') diff --git a/src/virtualfiletree.h b/src/virtualfiletree.h index ebce5486..de3e6f71 100644 --- a/src/virtualfiletree.h +++ b/src/virtualfiletree.h @@ -26,7 +26,7 @@ along with Mod Organizer. If not, see . namespace MOShared { - class DirectoryEntry; +class DirectoryEntry; } /** @@ -38,9 +38,9 @@ namespace MOShared * This class does not expose mutable operations, so any mutable operations will * fail. */ -class VirtualFileTree : public MOBase::IFileTree { +class VirtualFileTree : public MOBase::IFileTree +{ public: - /** * @brief Create a new file tree representing the given VFS directory. * @@ -48,13 +48,15 @@ public: * * @return a file tree representing the VFS directory. */ - static std::shared_ptr makeTree(const MOShared::DirectoryEntry* root); + static std::shared_ptr + makeTree(const MOShared::DirectoryEntry* root); protected: - using IFileTree::IFileTree; - virtual bool doPopulate(std::shared_ptr parent, std::vector>& entries) const = 0; + virtual bool + doPopulate(std::shared_ptr parent, + std::vector>& entries) const = 0; }; #endif -- cgit v1.3.1