sot-core
sot-core copied to clipboard
Fixing warning types involved by size_type and long ambiguity.
This PR fixes the problem that dynamic_graph::size_type
is equal to long.
However when trying to cast long
to a Value the compiler complains that this is ambiguous.
This PR tries to fix this.
Why don't you simply define
typedef std::int64_t size_type
?