diff options
author | Damien George <damien.p.george@gmail.com> | 2014-08-13 13:34:41 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-08-13 13:34:41 +0100 |
commit | 2c781eabbd42b65e6453bad7dcf07344a285f99f (patch) | |
tree | cd1f620f0ee058c7e331eb82b2ad3596952bc789 | |
parent | 9b7a8ee8f1032a1c9172afe0bd3ac5be7780e4a2 (diff) | |
parent | 8cce8b7c4c561ffeb0548bb0e0df1e9d659d9d68 (diff) | |
download | micropython-2c781eabbd42b65e6453bad7dcf07344a285f99f.tar.gz micropython-2c781eabbd42b65e6453bad7dcf07344a285f99f.zip |
Merge pull request #798 from stinos/msvc-alignof
msvc: Use built-in alignof
-rw-r--r-- | windows/mpconfigport.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/windows/mpconfigport.h b/windows/mpconfigport.h index 93b450dbbc..13ba58be13 100644 --- a/windows/mpconfigport.h +++ b/windows/mpconfigport.h @@ -119,6 +119,7 @@ void msec_sleep(double msec); #define restrict #define inline __inline +#define alignof(t) __alignof(t) #define STDIN_FILENO 0 #define STDOUT_FILENO 1 #define STDERR_FILENO 2 |