From 975c393b1d0c05083d0e6c3b66545bc123501524 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Mon, 23 Jun 2014 15:56:31 -0400 Subject: [PATCH] JES_Init() should be static inline --- src/lib/include/jes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/include/jes.h b/src/lib/include/jes.h index 6781a47..834b649 100644 --- a/src/lib/include/jes.h +++ b/src/lib/include/jes.h @@ -6,7 +6,7 @@ namespace jes { - void JES_Init(const std::string & bin_path) + static inline void JES_Init(const std::string & bin_path) { Core::instance.init(bin_path); }