Skip to content

Commit

Permalink
Use integral concept
Browse files Browse the repository at this point in the history
  • Loading branch information
FreePhoenix888 committed Oct 21, 2022
1 parent 063f24a commit e92b1d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/Platform.Data/LinksOptions.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace Platform::Data
{

template<typename TLinkAddress = std::uint64_t, LinksConstants<TLinkAddress> VConstants = LinksConstants<TLinkAddress>{true}, typename TLink = std::vector<TLinkAddress>, typename TReadHandler = std::function<TLinkAddress(TLink)>, typename TWriteHandler = std::function<TLinkAddress(TLink, TLink)>>
template<std::integral TLinkAddress = std::uint64_t, LinksConstants<TLinkAddress> VConstants = LinksConstants<TLinkAddress>{true}, typename TLink = std::vector<TLinkAddress>, typename TReadHandler = std::function<TLinkAddress(TLink)>, typename TWriteHandler = std::function<TLinkAddress(TLink, TLink)>>
struct LinksOptions
{
using LinkAddressType = TLinkAddress;
Expand Down

0 comments on commit e92b1d4

Please sign in to comment.