1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-25 06:33:16 +00:00

Remove JANET_WALIGN

It was not used anywhere in the source after some
refactoring to make better use of structs and unions for automatic
alignment.
This commit is contained in:
Calvin Rose 2019-05-21 11:12:56 -04:00
parent 411fc77ecf
commit 91c3685705
2 changed files with 0 additions and 10 deletions

View File

@ -184,15 +184,6 @@ extern "C" {
#endif
#endif
/* Alignment for pointers */
#ifndef JANET_WALIGN
#ifdef JANET_32
#define JANET_WALIGN 4
#else
#define JANET_WALIGN 8
#endif
#endif
/***** END SECTION CONFIG *****/
/***** START SECTION TYPES *****/

View File

@ -42,6 +42,5 @@
/* #define JANET_MAX_MACRO_EXPAND 200 */
/* #define JANET_STACK_MAX 16384 */
/* #define JANET_NO_NANBOX */
/* #define JANET_WALIGN 8 */
#endif /* end of include guard: JANETCONF_H */