From 9ceb9419af9083d3e01f843fe90a4d70c1c99250 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Andre Date: Fri, 19 Jan 2018 15:58:52 +0900 Subject: [PATCH] cxx: Fix a trivial warning --- src/lib/eolian_cxx/grammar/klass_def.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/eolian_cxx/grammar/klass_def.hpp b/src/lib/eolian_cxx/grammar/klass_def.hpp index ee9fccbf39..610a844ee1 100644 --- a/src/lib/eolian_cxx/grammar/klass_def.hpp +++ b/src/lib/eolian_cxx/grammar/klass_def.hpp @@ -1072,7 +1072,7 @@ struct enum_value_def std::string c_name; documentation_def documentation; - enum_value_def(Eolian_Enum_Type_Field const* enum_field, Eolian_Unit const* unit) + enum_value_def(Eolian_Enum_Type_Field const* enum_field, Eolian_Unit const*) { name = eolian_typedecl_enum_field_name_get(enum_field); c_name = eolian_typedecl_enum_field_c_name_get(enum_field);