diff --git a/mace/python/tools/mace_engine_factory.h.jinja2 b/mace/python/tools/mace_engine_factory.h.jinja2 index 41df3fc6afde9dc507c898bf1e6dfbd8f9dd95ad..132d9e30703a33f51009cc14f9522652080a38f3 100644 --- a/mace/python/tools/mace_engine_factory.h.jinja2 +++ b/mace/python/tools/mace_engine_factory.h.jinja2 @@ -19,7 +19,6 @@ #include #include -#include "mace/core/macros.h" #include "mace/public/mace.h" #include "mace/public/mace_runtime.h" @@ -92,12 +91,12 @@ MaceStatus CreateMaceEngineFromCode( const std::vector &output_nodes, const DeviceType device_type, std::shared_ptr *engine) { - MACE_UNUSED(model_name); - MACE_UNUSED(model_data_file); - MACE_UNUSED(input_nodes); - MACE_UNUSED(output_nodes); - MACE_UNUSED(device_type); - MACE_UNUSED(engine); + (void)(model_name); + (void)(model_data_file); + (void)(input_nodes); + (void)(output_nodes); + (void)(device_type); + (void)(engine); return MaceStatus::MACE_INVALID_ARGS; } {% endif %}