mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
342 B
11 lines
342 B
/* Workaround for GH-323: avoid inlining control when compiling from
|
|
* multiple sources, as it causes compiler portability trouble.
|
|
*/
|
|
#if !defined(DUK_SINGLE_FILE)
|
|
#undef DUK_NOINLINE
|
|
#undef DUK_INLINE
|
|
#undef DUK_ALWAYS_INLINE
|
|
#define DUK_NOINLINE /*nop*/
|
|
#define DUK_INLINE /*nop*/
|
|
#define DUK_ALWAYS_INLINE /*nop*/
|
|
#endif
|
|
|