MCPcopy Create free account
hub / github.com/Kitware/VTK / IsSigned64Bit

Function IsSigned64Bit

Common/Core/vtkVariantInlineOperators.h:17–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15// inline these so they have very little overhead.
16
17VTK_ABI_NAMESPACE_BEGIN
18inline bool IsSigned64Bit(int VariantType)
19{
20#if VTK_LONG_LONG == VTK_TYPE_INT64
21 return (VariantType == VTK_TYPE_INT64);
22#else
23 return ((VariantType == VTK_LONG_LONG) || (VariantType == VTK_TYPE_INT64));
24#endif
25}
26
27inline bool IsSigned(int VariantType)
28{

Callers 1

IsSignedFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected