diff --git a/src/python_pybind11/src/Material.cc b/src/python_pybind11/src/Material.cc index 38a5fb8fd..929293e97 100644 --- a/src/python_pybind11/src/Material.cc +++ b/src/python_pybind11/src/Material.cc @@ -14,7 +14,10 @@ * limitations under the License. * */ +#include +#include #include + #include "Material.hh" #include #include @@ -94,7 +97,8 @@ void defineMathMaterial(py::module &m, const std::string &typestr) .value("BRASS", ignition::math::MaterialType::BRASS) .value("COPPER", ignition::math::MaterialType::COPPER) .value("TUNGSTEN", ignition::math::MaterialType::TUNGSTEN) - .value("UNKNOWN_MATERIAL", ignition::math::MaterialType::UNKNOWN_MATERIAL) + .value("UNKNOWN_MATERIAL", + ignition::math::MaterialType::UNKNOWN_MATERIAL) .export_values(); } } // namespace python