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
dd6e420d
Commit
dd6e420d
authored
Jul 17, 2017
by
Adam Cozzette
Committed by
GitHub
Jul 17, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3357 from bklarson/master
Fix build when using -Werror=undef
parents
eb8e3d32
81142e16
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
coded_stream.h
src/google/protobuf/io/coded_stream.h
+1
-1
hash.h
src/google/protobuf/stubs/hash.h
+1
-1
No files found.
src/google/protobuf/io/coded_stream.h
View file @
dd6e420d
...
...
@@ -1434,7 +1434,7 @@ inline bool CodedInputStream::IsFlat() const {
}
// namespace protobuf
#if _MSC_VER >= 1300 && !defined(__INTEL_COMPILER)
#if
defined(_MSC_VER) &&
_MSC_VER >= 1300 && !defined(__INTEL_COMPILER)
#pragma runtime_checks("c", restore)
#endif // _MSC_VER && !defined(__INTEL_COMPILER)
...
...
src/google/protobuf/stubs/hash.h
View file @
dd6e420d
...
...
@@ -42,7 +42,7 @@
#define GOOGLE_PROTOBUF_HAVE_HASH_SET 1
// Use C++11 unordered_{map|set} if available.
#if ((_LIBCPP_STD_VER >= 11) || \
#if ((
defined(_LIBCPP_STD_VER) &&
_LIBCPP_STD_VER >= 11) || \
(((__cplusplus >= 201103L) || defined(__GXX_EXPERIMENTAL_CXX0X)) && \
(__GLIBCXX__ > 20090421)))
# define GOOGLE_PROTOBUF_HAS_CXX11_HASH
...
...
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