From 0f2cf531f705d370321843e5ba9135b2ebdb5d19 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sun, 17 May 2020 16:31:57 +0100 Subject: style(3p/nix): Reformat project in Google C++ style Reformatted with: fd . -e hh -e cc | xargs clang-format -i --- third_party/nix/src/libutil/ref.hh | 125 ++++++++++++++----------------------- 1 file changed, 47 insertions(+), 78 deletions(-) (limited to 'third_party/nix/src/libutil/ref.hh') diff --git a/third_party/nix/src/libutil/ref.hh b/third_party/nix/src/libutil/ref.hh index 0be2a7e74ae0..5f0d7db4b6a1 100644 --- a/third_party/nix/src/libutil/ref.hh +++ b/third_party/nix/src/libutil/ref.hh @@ -1,92 +1,61 @@ #pragma once -#include #include +#include #include namespace nix { /* A simple non-nullable reference-counted pointer. Actually a wrapper around std::shared_ptr that prevents non-null constructions. */ -template -class ref -{ -private: - - std::shared_ptr p; - -public: - - ref(const ref & r) - : p(r.p) - { } - - explicit ref(const std::shared_ptr & p) - : p(p) - { - if (!p) - throw std::invalid_argument("null pointer cast to ref"); - } - - explicit ref(T * p) - : p(p) - { - if (!p) - throw std::invalid_argument("null pointer cast to ref"); - } - - T* operator ->() const - { - return &*p; - } - - T& operator *() const - { - return *p; - } - - operator std::shared_ptr () const - { - return p; - } - - std::shared_ptr get_ptr() const - { - return p; - } - - template - ref cast() const - { - return ref(std::dynamic_pointer_cast(p)); - } - - template - std::shared_ptr dynamic_pointer_cast() const - { - return std::dynamic_pointer_cast(p); - } - - template - operator ref () const - { - return ref((std::shared_ptr) p); - } - -private: - - template - friend ref - make_ref(Args&&... args); +template +class ref { + private: + std::shared_ptr p; + + public: + ref(const ref& r) : p(r.p) {} + + explicit ref(const std::shared_ptr& p) : p(p) { + if (!p) throw std::invalid_argument("null pointer cast to ref"); + } + + explicit ref(T* p) : p(p) { + if (!p) throw std::invalid_argument("null pointer cast to ref"); + } + + T* operator->() const { return &*p; } + + T& operator*() const { return *p; } + operator std::shared_ptr() const { return p; } + + std::shared_ptr get_ptr() const { return p; } + + template + ref cast() const { + return ref(std::dynamic_pointer_cast(p)); + } + + template + std::shared_ptr dynamic_pointer_cast() const { + return std::dynamic_pointer_cast(p); + } + + template + operator ref() const { + return ref((std::shared_ptr)p); + } + + private: + template + friend ref make_ref(Args&&... args); }; -template -inline ref -make_ref(Args&&... args) -{ - auto p = std::make_shared(std::forward(args)...); - return ref(p); +template +inline ref make_ref(Args&&... args) { + auto p = std::make_shared(std::forward(args)...); + return ref(p); } -} +} // namespace nix -- cgit 1.4.1