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
379b7ff4
Commit
379b7ff4
authored
Mar 26, 2018
by
Alexey Malov
Committed by
Feng Xiao
Mar 26, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes MSVC compiler warning C4800 "Forcing value to bool 'true' or 'false'" (#4350)
parent
ac673763
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
generated_message_util.h
src/google/protobuf/generated_message_util.h
+1
-1
coded_stream.h
src/google/protobuf/io/coded_stream.h
+1
-1
No files found.
src/google/protobuf/generated_message_util.h
View file @
379b7ff4
...
...
@@ -175,7 +175,7 @@ struct LIBPROTOBUF_EXPORT FieldMetadata {
inline
bool
IsPresent
(
const
void
*
base
,
uint32
hasbit
)
{
const
uint32
*
has_bits_array
=
static_cast
<
const
uint32
*>
(
base
);
return
has_bits_array
[
hasbit
/
32
]
&
(
1u
<<
(
hasbit
&
31
))
;
return
(
has_bits_array
[
hasbit
/
32
]
&
(
1u
<<
(
hasbit
&
31
)))
!=
0
;
}
inline
bool
IsOneofPresent
(
const
void
*
base
,
uint32
offset
,
uint32
tag
)
{
...
...
src/google/protobuf/io/coded_stream.h
View file @
379b7ff4
...
...
@@ -851,7 +851,7 @@ class LIBPROTOBUF_EXPORT CodedOutputStream {
}
static
bool
IsDefaultSerializationDeterministic
()
{
return
default_serialization_deterministic_
.
load
(
std
::
memory_order_relaxed
);
return
default_serialization_deterministic_
.
load
(
std
::
memory_order_relaxed
)
!=
0
;
}
private
:
...
...
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