0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-30 20:58:51 +02:00

fixup! ircd::js: Upgrade SpiderMonkey to esr52 from esr45.

This commit is contained in:
Jason Volk 2017-08-23 15:34:55 -06:00
parent 3610dd9f9b
commit 48045d5b23

View file

@ -55,3 +55,27 @@ struct init
} // namespace js
} // namespace ircd
#ifndef RB_ENABLE_JS
//
// Stub definitions for when JS isn't enabled because the definition
// file is not compiled at all.
//
inline
ircd::js::init::init()
{
}
inline
ircd::js::init::~init()
{
}
inline
const char *ircd::js::version(const ver &ver)
{
return "DISABLED";
}
#endif // !RB_ENABLE_JS