We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Data/cpp/Platform.Data/LinksOptions.h
Lines 3 to 11 in dbb84e1
template<typename TLinkAddress = std::uint64_t, typename TLink = std::vector<TLinkAddress>, typename TWriteHandler = std::function<TLinkAddress(TLink, TLink)>, typename TReadHandler = std::function<TLinkAddress(TLink)>, LinksConstants<TLinkAddress> VConstants = LinksConstants<TLinkAddress>{true}> struct LinksOptions { using LinkAddressType = TLinkAddress; using LinkType = TLink; using WriteHandlerType = TWriteHandler; using ReadHandlerType = TReadHandler; static constexpr LinksConstants<LinkAddressType> Constants = VConstants; };
This change will reduce duplication in code and will make LinksOptions more adjustable by user.
LinksOptions
The text was updated successfully, but these errors were encountered:
typename TLinkAddress = std::uint64_t
Please remove = std::uint64_t
= std::uint64_t
Sorry, something went wrong.
No branches or pull requests
Data/cpp/Platform.Data/LinksOptions.h
Lines 3 to 11 in dbb84e1
⇒
This change will reduce duplication in code and will make
LinksOptions
more adjustable by user.The text was updated successfully, but these errors were encountered: