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
9d51155c
Commit
9d51155c
authored
Sep 26, 2013
by
Pieter Hintjens
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Build/test errors on OS/X with clang++
parent
9827a127
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
options.cpp
src/options.cpp
+1
-1
test_stream.cpp
tests/test_stream.cpp
+0
-1
No files found.
src/options.cpp
View file @
9d51155c
...
...
@@ -286,7 +286,7 @@ int zmq::options_t::setsockopt (int option_, const void *optval_,
break
;
case
ZMQ_ZAP_DOMAIN
:
if
(
optvallen_
>=
0
&&
optvallen_
<
256
)
{
if
(
optvallen_
<
256
)
{
zap_domain
.
assign
((
const
char
*
)
optval_
,
optvallen_
);
return
0
;
}
...
...
tests/test_stream.cpp
View file @
9d51155c
...
...
@@ -102,7 +102,6 @@ test_stream_to_dealer (void)
assert
(
rc
>=
0
);
bytes_read
+=
rc
;
}
assert
(
rc
==
97
);
// First two bytes are major and minor version numbers.
assert
(
buffer
[
0
]
==
3
);
// ZMTP/3.0
...
...
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