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
c6e2767a
Commit
c6e2767a
authored
Oct 12, 2013
by
Kenton Varda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix gcc-4.8
parent
31d0f0d2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
capability.c++
c++/src/capnp/capability.c++
+1
-1
async.c++
c++/src/kj/async.c++
+1
-1
async.h
c++/src/kj/async.h
+1
-1
No files found.
c++/src/capnp/capability.c++
View file @
c6e2767a
...
...
@@ -121,7 +121,7 @@ struct LocalCapDescriptor {
};
template
<>
StructSize
structSize
<
LocalCapDescriptor
>
()
{
constexpr
StructSize
structSize
<
LocalCapDescriptor
>
()
{
return
StructSize
(
1
*
WORDS
,
0
*
POINTERS
,
FieldSize
::
FOUR_BYTES
);
}
...
...
c++/src/kj/async.c++
View file @
c6e2767a
...
...
@@ -352,7 +352,7 @@ ForkBranchBase::ForkBranchBase(Own<const ForkHubBase>&& hubParam): hub(kj::mv(hu
}
}
ForkBranchBase
::~
ForkBranchBase
()
{
ForkBranchBase
::~
ForkBranchBase
()
noexcept
(
false
)
{
if
(
prevPtr
!=
nullptr
)
{
// Remove from hub's linked list of branches.
auto
lock
=
hub
->
branchList
.
lockExclusive
();
...
...
c++/src/kj/async.h
View file @
c6e2767a
...
...
@@ -975,7 +975,7 @@ class ForkHubBase;
class
ForkBranchBase
:
public
PromiseNode
{
public
:
ForkBranchBase
(
Own
<
const
ForkHubBase
>&&
hub
);
~
ForkBranchBase
();
~
ForkBranchBase
()
noexcept
(
false
)
;
void
hubReady
()
noexcept
;
// Called by the hub to indicate that it is ready.
...
...
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