Esempio n. 1
0
Component
Component::fromNumber(uint64_t number, uint32_t type)
{
  return makeNonNegativeIntegerBlock(type, number);
}
Esempio n. 2
0
/**
 * @deprecated Use makeNonNegativeIntegerBlock instead
 */
inline Block
nonNegativeIntegerBlock(uint32_t type, uint64_t value)
{
  return makeNonNegativeIntegerBlock(type, value);
}