From 561271b28caffba9f5851e4abd3ffd064353e38e Mon Sep 17 00:00:00 2001 From: Andrew Wong Date: Wed, 25 May 2022 18:03:58 -0700 Subject: [PATCH] rpc: remove unnecessary inline constexpr already implies inline, so this patch removes the inline tag. --- tools/rpcgen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/rpcgen.py b/tools/rpcgen.py index 965a9a815b36..c03fe0077789 100755 --- a/tools/rpcgen.py +++ b/tools/rpcgen.py @@ -58,7 +58,7 @@ class {{service_name}}_service : public rpc::service { class failure_probes; {%- for method in methods %} - inline static constexpr uint32_t {{method.name}}_method_id = {{method.id}}; + static constexpr uint32_t {{method.name}}_method_id = {{method.id}}; {%- endfor %} {{service_name}}_service(ss::scheduling_group sc, ss::smp_service_group ssg)