Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
protobuf
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
protobuf
Commits
bb7d210c
Commit
bb7d210c
authored
Sep 23, 2014
by
Dinis Rosário
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix "warning C4018: '<' : signed/unsigned mismatch" at wire_format_lite_inl.h
parent
a48c08aa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
wire_format_lite_inl.h
src/google/protobuf/wire_format_lite_inl.h
+1
-1
No files found.
src/google/protobuf/wire_format_lite_inl.h
View file @
bb7d210c
...
...
@@ -390,7 +390,7 @@ inline bool WireFormatLite::ReadPackedFixedSizePrimitive(
// safely allocate. We read as much as we can into *values
// without pre-allocating "length" bytes.
CType
value
;
for
(
int
i
=
0
;
i
<
new_entries
;
++
i
)
{
for
(
uint32
i
=
0
;
i
<
new_entries
;
++
i
)
{
if
(
!
ReadPrimitive
<
CType
,
DeclaredType
>
(
input
,
&
value
))
return
false
;
values
->
Add
(
value
);
}
...
...
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