- 
    Bug 
- 
    Resolution: Incomplete
- 
     Not Evaluated Not Evaluated
- 
    None
- 
    5.11.2
- 
    None
I'm trying to use shiboken2 in my project (it's ROS RViz) and I get following error when trying to wrap a class with a volatile member function:
Source:
protected: volatile bool shutting_down_;
Generated code:
PythonToCppFunc pythonToCpp; if (!_Check(pyIn) && (pythonToCpp = Shiboken::Conversions::isPythonToCppConvertible(Shiboken::Conversions::PrimitiveTypeConverter<bool volatile>(), (pyIn)))) { PyErr_SetString(PyExc_TypeError, "wrong type attributed to 'shutting_down_', 'bool volatile' or convertible type expected"); return -1; }
Error message:
error: ‘_Check’ was not declared in this scope