Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
3491fd04
Unverified
Commit
3491fd04
authored
Feb 08, 2018
by
Luca Boccassi
Committed by
GitHub
Feb 08, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2932 from sigiesec/reapply-2920
fix Windows Intel compiler build failure
parents
b77d7610
fdcb4520
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
zmq.h
include/zmq.h
+5
-5
No files found.
include/zmq.h
View file @
3491fd04
...
...
@@ -244,14 +244,14 @@ ZMQ_EXPORT int zmq_ctx_destroy (void *context);
*/
typedef
struct
zmq_msg_t
{
#if defined(__GNUC__) || defined(__INTEL_COMPILER) \
|| (defined(__SUNPRO_C) && __SUNPRO_C >= 0x590) \
|| (defined(__SUNPRO_CC) && __SUNPRO_CC >= 0x590)
unsigned
char
_
[
64
]
__attribute__
((
aligned
(
sizeof
(
void
*
))));
#elif defined(_MSC_VER) && (defined(_M_X64) || defined(_M_ARM64))
#if defined(_MSC_VER) && (defined(_M_X64) || defined(_M_ARM64))
__declspec
(
align
(
8
))
unsigned
char
_
[
64
];
#elif defined(_MSC_VER) && (defined(_M_IX86) || defined(_M_ARM_ARMV7VE))
__declspec
(
align
(
4
))
unsigned
char
_
[
64
];
#elif defined(__GNUC__) || defined(__INTEL_COMPILER) \
|| (defined(__SUNPRO_C) && __SUNPRO_C >= 0x590) \
|| (defined(__SUNPRO_CC) && __SUNPRO_CC >= 0x590)
unsigned
char
_
[
64
]
__attribute__
((
aligned
(
sizeof
(
void
*
))));
#else
unsigned
char
_
[
64
];
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment