JES_Init() should be static inline

This commit is contained in:
Josh Holtrop 2014-06-23 15:56:31 -04:00
parent f7937c1bea
commit 975c393b1d

View File

@ -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);
}