From ac2f0f6a0568ecaa993b48023844bfb2c9abf9dd Mon Sep 17 00:00:00 2001 From: Martin Ridgers Date: Thu, 13 Jan 2022 08:41:54 +0100 Subject: Added missing std:: namespace to nullptr_t use --- zencore/compactbinarypackage.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'zencore/compactbinarypackage.cpp') diff --git a/zencore/compactbinarypackage.cpp b/zencore/compactbinarypackage.cpp index f7ce371c8..6eaca5fdf 100644 --- a/zencore/compactbinarypackage.cpp +++ b/zencore/compactbinarypackage.cpp @@ -28,7 +28,7 @@ CbAttachment::CbAttachment(const CompositeBuffer& InValue) : Value{std::in_place { if (std::get(Value).Buffer.IsNull()) { - Value.emplace(); + Value.emplace(); } } @@ -36,7 +36,7 @@ CbAttachment::CbAttachment(CompositeBuffer&& InValue) : Value{std::in_place_type { if (std::get(Value).Buffer.IsNull()) { - Value.emplace(); + Value.emplace(); } } @@ -44,7 +44,7 @@ CbAttachment::CbAttachment(CompositeBuffer&& InValue, const IoHash& Hash) : Valu { if (std::get(Value).Buffer.IsNull()) { - Value.emplace(); + Value.emplace(); } } @@ -52,7 +52,7 @@ CbAttachment::CbAttachment(CompressedBuffer&& InValue) : Value(std::in_place_typ { if (std::get(Value).IsNull()) { - Value.emplace(); + Value.emplace(); } } @@ -238,7 +238,7 @@ CbAttachment::Save(BinaryWriter& Writer) const bool CbAttachment::IsNull() const { - return std::holds_alternative(Value); + return std::holds_alternative(Value); } bool -- cgit v1.2.3