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
74a3907b
Commit
74a3907b
authored
Jun 10, 2010
by
Martin Sustrik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
couple of ICC warnings fixed
parent
8782b4d6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
encoder.hpp
src/encoder.hpp
+1
-1
uuid.cpp
src/uuid.cpp
+3
-1
No files found.
src/encoder.hpp
View file @
74a3907b
...
...
@@ -52,7 +52,7 @@ namespace zmq
// The destructor doesn't have to be virtual. It is mad virtual
// just to keep ICC and code checking tools from complaining.
inline
~
encoder_t
()
inline
virtual
~
encoder_t
()
{
free
(
buf
);
}
...
...
src/uuid.cpp
View file @
74a3907b
...
...
@@ -190,8 +190,10 @@ unsigned char zmq::uuid_t::convert_byte (const char *hexa_)
byte
=
*
hexa_
-
'A'
+
10
;
else
if
(
*
hexa_
>=
'a'
&&
*
hexa_
<=
'f'
)
byte
=
*
hexa_
-
'a'
+
10
;
else
else
{
zmq_assert
(
false
);
byte
=
0
;
}
byte
*=
16
;
...
...
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