Skip to content

Commit 982e109

Browse files
committed
static to inline
1 parent fc4b979 commit 982e109

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

iguana/detail/itoa.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ template<typename I> char* itoa_fwd (I i,char *p) {
265265
return dec_::convert<dec_::Fwd>::itoa(i,p);
266266
}
267267

268-
static char *
268+
inline char *
269269
xtoa (long long sval,
270270
char * str,
271271
int radix,

iguana/reflection.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ namespace iguana::detail {
317317
MACRO_CONCAT(CON_STR, GET_ARG_COUNT(__VA_ARGS__))(__VA_ARGS__)
318318

319319
#define MAKE_META_DATA_IMPL(STRUCT_NAME, ...) \
320-
static auto iguana_reflect_members(STRUCT_NAME const&) \
320+
inline auto iguana_reflect_members(STRUCT_NAME const&) \
321321
{ \
322322
struct reflect_members \
323323
{ \

0 commit comments

Comments
 (0)