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
2991e6f6
Commit
2991e6f6
authored
Jul 27, 2017
by
Luca Boccassi
Committed by
GitHub
Jul 27, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2633 from pavel-pimenov/fix-C4324
Suppress C4324 (VC++2017)
parents
a537ace0
dfd9d484
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
command.hpp
src/command.hpp
+5
-3
No files found.
src/command.hpp
View file @
2991e6f6
...
...
@@ -44,10 +44,11 @@ namespace zmq
// This structure defines the commands that can be sent between threads.
#ifdef _MSC_VER
__declspec
(
align
(
64
))
struct
command_t
#
else
struct
command_t
#pragma warning(push)
#
pragma warning(disable: 4324) // C4324: alignment padding warnings
__declspec
(
align
(
64
))
#endif
struct
command_t
{
// Object to process the command.
zmq
::
object_t
*
destination
;
...
...
@@ -170,6 +171,7 @@ namespace zmq
}
args
;
#ifdef _MSC_VER
};
#pragma warning(pop)
#else
}
__attribute__
((
aligned
(
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