Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
C
capnproto
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
capnproto
Commits
ffd8ede2
Commit
ffd8ede2
authored
Apr 10, 2017
by
Kenton Varda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Always assume can't memcpy on GCC 4, as no available intrinsic does what we need.
parent
59441ca3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
7 deletions
+6
-7
common.h
c++/src/kj/common.h
+6
-7
No files found.
c++/src/kj/common.h
View file @
ffd8ede2
...
...
@@ -461,13 +461,12 @@ constexpr bool canMemcpy() {
// Returns true if T can be copied using memcpy instead of using the copy constructor or
// assignment operator.
// GCC 4 does not have __is_trivially_constructible and friends, but it does have these older
// intrinsics. Annoyingly, GCC 5+ and Clang define __has_trivial_copy() to be true if the copy
// constructor has been deleted, on the basis t hat a strict reading of the definition of
// "trivial" according to the standard says that deleted functions are in fact trivial, thus
// making the intrinsics essentially worthless. GCC 4, however, happens to define them the way
// we want.
return
__has_trivial_copy
(
T
)
&&
__has_trivial_assign
(
T
);
// GCC 4 does not have __is_trivially_constructible and friends, and there doesn't seem to be
// any reliable alternative. __has_trivial_copy() and __has_trivial_assign() return the right
// thing at one point but later on they changed such that a deleted copy constructor was
// considered "trivial" (apparently technically correct, though useless). So, on GCC 4 we give up
// and assume we can't memcpy() at all, and must explicitly copy-construct everything.
return
false
;
}
#else
template
<
typename
T
>
...
...
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