Pass the TargetDescriptor by const-reference where we can

This commit is contained in:
Nav
2022-12-17 14:41:52 +00:00
parent d9d8b3f450
commit a1defa02c0
5 changed files with 9 additions and 9 deletions

View File

@@ -13,7 +13,7 @@ namespace Bloom::TargetController::Responses
public:
static constexpr ResponseType type = ResponseType::TARGET_DESCRIPTOR;
Targets::TargetDescriptor targetDescriptor;
const Targets::TargetDescriptor& targetDescriptor;
explicit TargetDescriptor(const Targets::TargetDescriptor& targetDescriptor)
: targetDescriptor(targetDescriptor)