style(3p/nix): Reformat project in Google C++ style
Reformatted with:
    fd . -e hh -e cc | xargs clang-format -i
			
			
This commit is contained in:
		
							parent
							
								
									65a1aae98c
								
							
						
					
					
						commit
						0f2cf531f7
					
				
					 175 changed files with 32126 additions and 34689 deletions
				
			
		| 
						 | 
				
			
			@ -6,35 +6,33 @@
 | 
			
		|||
 | 
			
		||||
namespace nix {
 | 
			
		||||
 | 
			
		||||
class RemoteFSAccessor : public FSAccessor
 | 
			
		||||
{
 | 
			
		||||
    ref<Store> store;
 | 
			
		||||
class RemoteFSAccessor : public FSAccessor {
 | 
			
		||||
  ref<Store> store;
 | 
			
		||||
 | 
			
		||||
    std::map<Path, ref<FSAccessor>> nars;
 | 
			
		||||
  std::map<Path, ref<FSAccessor>> nars;
 | 
			
		||||
 | 
			
		||||
    Path cacheDir;
 | 
			
		||||
  Path cacheDir;
 | 
			
		||||
 | 
			
		||||
    std::pair<ref<FSAccessor>, Path> fetch(const Path & path_);
 | 
			
		||||
  std::pair<ref<FSAccessor>, Path> fetch(const Path& path_);
 | 
			
		||||
 | 
			
		||||
    friend class BinaryCacheStore;
 | 
			
		||||
  friend class BinaryCacheStore;
 | 
			
		||||
 | 
			
		||||
    Path makeCacheFile(const Path & storePath, const std::string & ext);
 | 
			
		||||
  Path makeCacheFile(const Path& storePath, const std::string& ext);
 | 
			
		||||
 | 
			
		||||
    void addToCache(const Path & storePath, const std::string & nar,
 | 
			
		||||
        ref<FSAccessor> narAccessor);
 | 
			
		||||
  void addToCache(const Path& storePath, const std::string& nar,
 | 
			
		||||
                  ref<FSAccessor> narAccessor);
 | 
			
		||||
 | 
			
		||||
public:
 | 
			
		||||
 public:
 | 
			
		||||
  RemoteFSAccessor(ref<Store> store,
 | 
			
		||||
                   const /* FIXME: use std::optional */ Path& cacheDir = "");
 | 
			
		||||
 | 
			
		||||
    RemoteFSAccessor(ref<Store> store,
 | 
			
		||||
        const /* FIXME: use std::optional */ Path & cacheDir = "");
 | 
			
		||||
  Stat stat(const Path& path) override;
 | 
			
		||||
 | 
			
		||||
    Stat stat(const Path & path) override;
 | 
			
		||||
  StringSet readDirectory(const Path& path) override;
 | 
			
		||||
 | 
			
		||||
    StringSet readDirectory(const Path & path) override;
 | 
			
		||||
  std::string readFile(const Path& path) override;
 | 
			
		||||
 | 
			
		||||
    std::string readFile(const Path & path) override;
 | 
			
		||||
 | 
			
		||||
    std::string readLink(const Path & path) override;
 | 
			
		||||
  std::string readLink(const Path& path) override;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
}  // namespace nix
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue