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
fc11baa4
Commit
fc11baa4
authored
Jun 17, 2016
by
Kenton Varda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix build failures caused by
c2693b32
parent
0eb9cbc1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
8 deletions
+10
-8
grammar.capnp.h
c++/src/capnp/compiler/grammar.capnp.h
+0
-0
encoding-test.c++
c++/src/capnp/encoding-test.c++
+2
-0
rpc.capnp.h
c++/src/capnp/rpc.capnp.h
+8
-8
schema.capnp.h
c++/src/capnp/schema.capnp.h
+0
-0
No files found.
c++/src/capnp/compiler/grammar.capnp.h
View file @
fc11baa4
This diff is collapsed.
Click to expand it.
c++/src/capnp/encoding-test.c++
View file @
fc11baa4
...
...
@@ -1866,6 +1866,8 @@ TEST(Encoding, UnionInGenerics) {
builder
.
getUv
();
builder
.
setUv
();
builder
.
initUg
();
reader
.
isUg
();
builder
.
isUg
();
reader
.
getUg
();
...
...
c++/src/capnp/rpc.capnp.h
View file @
fc11baa4
...
...
@@ -3322,20 +3322,20 @@ inline ::capnp::Orphan< ::capnp::rpc::Payload> Call::Builder::disownParams() {
}
inline
typename
Call
::
SendResultsTo
::
Reader
Call
::
Reader
::
getSendResultsTo
()
const
{
return
Call
::
SendResultsTo
::
Reader
(
_reader
);
return
typename
Call
::
SendResultsTo
::
Reader
(
_reader
);
}
inline
typename
Call
::
SendResultsTo
::
Builder
Call
::
Builder
::
getSendResultsTo
()
{
return
Call
::
SendResultsTo
::
Builder
(
_builder
);
return
typename
Call
::
SendResultsTo
::
Builder
(
_builder
);
}
#if !CAPNP_LITE
inline
typename
Call
::
SendResultsTo
::
Pipeline
Call
::
Pipeline
::
getSendResultsTo
()
{
return
Call
::
SendResultsTo
::
Pipeline
(
_typeless
.
noop
());
return
typename
Call
::
SendResultsTo
::
Pipeline
(
_typeless
.
noop
());
}
#endif // !CAPNP_LITE
inline
typename
Call
::
SendResultsTo
::
Builder
Call
::
Builder
::
initSendResultsTo
()
{
_builder
.
setDataField
<
::
uint16_t
>
(
3
*
::
capnp
::
ELEMENTS
,
0
);
_builder
.
getPointerField
(
2
*
::
capnp
::
POINTERS
).
clear
();
return
Call
::
SendResultsTo
::
Builder
(
_builder
);
return
typename
Call
::
SendResultsTo
::
Builder
(
_builder
);
}
inline
bool
Call
::
Reader
::
getAllowThirdPartyTailCall
()
const
{
return
_reader
.
getDataField
<
bool
>
(
...
...
@@ -3916,20 +3916,20 @@ inline ::capnp::Orphan< ::capnp::rpc::MessageTarget> Disembargo::Builder::disown
}
inline
typename
Disembargo
::
Context
::
Reader
Disembargo
::
Reader
::
getContext
()
const
{
return
Disembargo
::
Context
::
Reader
(
_reader
);
return
typename
Disembargo
::
Context
::
Reader
(
_reader
);
}
inline
typename
Disembargo
::
Context
::
Builder
Disembargo
::
Builder
::
getContext
()
{
return
Disembargo
::
Context
::
Builder
(
_builder
);
return
typename
Disembargo
::
Context
::
Builder
(
_builder
);
}
#if !CAPNP_LITE
inline
typename
Disembargo
::
Context
::
Pipeline
Disembargo
::
Pipeline
::
getContext
()
{
return
Disembargo
::
Context
::
Pipeline
(
_typeless
.
noop
());
return
typename
Disembargo
::
Context
::
Pipeline
(
_typeless
.
noop
());
}
#endif // !CAPNP_LITE
inline
typename
Disembargo
::
Context
::
Builder
Disembargo
::
Builder
::
initContext
()
{
_builder
.
setDataField
<
::
uint32_t
>
(
0
*
::
capnp
::
ELEMENTS
,
0
);
_builder
.
setDataField
<
::
uint16_t
>
(
2
*
::
capnp
::
ELEMENTS
,
0
);
return
Disembargo
::
Context
::
Builder
(
_builder
);
return
typename
Disembargo
::
Context
::
Builder
(
_builder
);
}
inline
::
capnp
::
rpc
::
Disembargo
::
Context
::
Which
Disembargo
::
Context
::
Reader
::
which
()
const
{
return
_reader
.
getDataField
<
Which
>
(
2
*
::
capnp
::
ELEMENTS
);
...
...
c++/src/capnp/schema.capnp.h
View file @
fc11baa4
This diff is collapsed.
Click to expand it.
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