From 67de10bfcb9d9ff21e1aa678aff8afa10446b7c4 Mon Sep 17 00:00:00 2001 From: cubicdaiya Date: Sat, 1 Mar 2014 03:31:45 +0900 Subject: use C style comments instead of C++ style comments According to CONTRIBUTING.md, Don't use C++ style comments /* This is the prefered comment style */ Use C++ style comments only for temporary comment e.g. commenting out some code lines. --- mrbgems/mruby-time/src/time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mrbgems/mruby-time/src') diff --git a/mrbgems/mruby-time/src/time.c b/mrbgems/mruby-time/src/time.c index a13af790b..2e72c5c53 100644 --- a/mrbgems/mruby-time/src/time.c +++ b/mrbgems/mruby-time/src/time.c @@ -137,7 +137,7 @@ mrb_time_update_datetime(struct mrb_time *self) } if (!aid) return NULL; #ifdef NO_GMTIME_R - self->datetime = *aid; // copy data + self->datetime = *aid; /* copy data */ #endif return self; -- cgit v1.2.3