Applied hicpp-use-equals-default clang-tidy fixes

This commit is contained in:
Bartek Kryza
2022-12-20 23:06:21 +01:00
parent 682c6648be
commit 6b883c4562
3 changed files with 3 additions and 3 deletions

View File

@@ -31,7 +31,7 @@ template <typename T> class optional_ref {
public:
using optional_type = T;
optional_ref() { }
optional_ref() = default;
optional_ref(T *value) { value_ = value; }