From 816d28e7bc9473482664d374786dac484c0e1156 Mon Sep 17 00:00:00 2001 From: Ben Straub Date: Tue, 1 Oct 2013 12:56:47 -0700 Subject: [PATCH] Mark git__timer as inline on OSX --- src/util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.h b/src/util.h index 78e2f2e79..f9de909e9 100644 --- a/src/util.h +++ b/src/util.h @@ -379,7 +379,7 @@ GIT_INLINE(double) git__timer(void) #include -double git__timer(void) +GIT_INLINE(double) git__timer(void) { uint64_t time = mach_absolute_time(); static double scaling_factor = 0;