Skip to content

Commit

Permalink
Drop unnecessary zero initializer.
Browse files Browse the repository at this point in the history
Signed-off-by: Michel Hidalgo <michel@ekumenlabs.com>
  • Loading branch information
hidmic committed Jul 14, 2020
1 parent bc67214 commit 8a3b233
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/mimick/literal.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ struct mmk_literal {
};

template<typename T, int ID>
T mmk_literal<T, ID>::storage{0};
T mmk_literal<T, ID>::storage;

# define MMK_COMMA_APPEND(_, prefix, content) (void) (prefix content),

Expand Down

0 comments on commit 8a3b233

Please sign in to comment.