Skip to content
Snippets Groups Projects
Commit a3c40d9d authored by Olivier Stasse's avatar Olivier Stasse
Browse files

[convert-dg-to-py] Remove ambiguous types.

parent 6e83680b
No related branches found
No related tags found
No related merge requests found
......@@ -30,11 +30,11 @@ command::Value toValue(bp::object o, const command::Value::Type& valueType) {
case (Value::UNSIGNED):
return Value(bp::extract<unsigned>(o));
case (Value::UNSIGNEDLONGINT):
return Value(bp::extract<unsigned long int>(o));
return Value(bp::extract<std::uint64_t>(o));
case (Value::INT):
return Value(bp::extract<int>(o));
case (Value::LONGINT):
return Value(bp::extract<long int>(o));
return Value(bp::extract<std::int64_t>(o));
case (Value::FLOAT):
return Value(bp::extract<float>(o));
case (Value::DOUBLE):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment