From 8dbb396f6bc688201ae7ca1afa35631bbf2051f4 Mon Sep 17 00:00:00 2001 From: "linksplatform-sweepai[bot]" <144652594+linksplatform-sweepai[bot]@users.noreply.github.com> Date: Wed, 20 Sep 2023 08:40:05 +0000 Subject: [PATCH] feat: Added CLinkAddress concept --- cpp/Platform.Interfaces/CLinkAddress.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 cpp/Platform.Interfaces/CLinkAddress.h diff --git a/cpp/Platform.Interfaces/CLinkAddress.h b/cpp/Platform.Interfaces/CLinkAddress.h new file mode 100644 index 0000000..0fe7cf6 --- /dev/null +++ b/cpp/Platform.Interfaces/CLinkAddress.h @@ -0,0 +1,9 @@ +#pragma once + +#include +#include + +namespace Platform::Interfaces { + template + concept CLinkAddress = std::is_integral::value && std::is_unsigned::value; +}