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
539f9d83
Commit
539f9d83
authored
May 21, 2016
by
Kenton Varda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Regenerate bootstraps to fix tests.
parent
feefd34e
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
16 deletions
+16
-16
grammar.capnp.h
c++/src/capnp/compiler/grammar.capnp.h
+0
-0
rpc.capnp.h
c++/src/capnp/rpc.capnp.h
+16
-16
schema.capnp.h
c++/src/capnp/schema.capnp.h
+0
-0
No files found.
c++/src/capnp/compiler/grammar.capnp.h
View file @
539f9d83
This diff is collapsed.
Click to expand it.
c++/src/capnp/rpc.capnp.h
View file @
539f9d83
...
...
@@ -758,7 +758,7 @@ public:
inline
bool
hasParams
()
const
;
inline
::
capnp
::
rpc
::
Payload
::
Reader
getParams
()
const
;
inline
SendResultsTo
::
Reader
getSendResultsTo
()
const
;
inline
typename
SendResultsTo
::
Reader
getSendResultsTo
()
const
;
inline
bool
getAllowThirdPartyTailCall
()
const
;
...
...
@@ -813,8 +813,8 @@ public:
inline
void
adoptParams
(
::
capnp
::
Orphan
<
::
capnp
::
rpc
::
Payload
>&&
value
);
inline
::
capnp
::
Orphan
<
::
capnp
::
rpc
::
Payload
>
disownParams
();
inline
SendResultsTo
::
Builder
getSendResultsTo
();
inline
SendResultsTo
::
Builder
initSendResultsTo
();
inline
typename
SendResultsTo
::
Builder
getSendResultsTo
();
inline
typename
SendResultsTo
::
Builder
initSendResultsTo
();
inline
bool
getAllowThirdPartyTailCall
();
inline
void
setAllowThirdPartyTailCall
(
bool
value
);
...
...
@@ -839,7 +839,7 @@ public:
inline
::
capnp
::
rpc
::
MessageTarget
::
Pipeline
getTarget
();
inline
::
capnp
::
rpc
::
Payload
::
Pipeline
getParams
();
inline
SendResultsTo
::
Pipeline
getSendResultsTo
();
inline
typename
SendResultsTo
::
Pipeline
getSendResultsTo
();
private
:
::
capnp
::
AnyPointer
::
Pipeline
_typeless
;
friend
class
::
capnp
::
PipelineHook
;
...
...
@@ -1365,7 +1365,7 @@ public:
inline
bool
hasTarget
()
const
;
inline
::
capnp
::
rpc
::
MessageTarget
::
Reader
getTarget
()
const
;
inline
Context
::
Reader
getContext
()
const
;
inline
typename
Context
::
Reader
getContext
()
const
;
private
:
::
capnp
::
_
::
StructReader
_reader
;
...
...
@@ -1402,8 +1402,8 @@ public:
inline
void
adoptTarget
(
::
capnp
::
Orphan
<
::
capnp
::
rpc
::
MessageTarget
>&&
value
);
inline
::
capnp
::
Orphan
<
::
capnp
::
rpc
::
MessageTarget
>
disownTarget
();
inline
Context
::
Builder
getContext
();
inline
Context
::
Builder
initContext
();
inline
typename
Context
::
Builder
getContext
();
inline
typename
Context
::
Builder
initContext
();
private
:
::
capnp
::
_
::
StructBuilder
_builder
;
...
...
@@ -1424,7 +1424,7 @@ public:
:
_typeless
(
kj
::
mv
(
typeless
))
{}
inline
::
capnp
::
rpc
::
MessageTarget
::
Pipeline
getTarget
();
inline
Context
::
Pipeline
getContext
();
inline
typename
Context
::
Pipeline
getContext
();
private
:
::
capnp
::
AnyPointer
::
Pipeline
_typeless
;
friend
class
::
capnp
::
PipelineHook
;
...
...
@@ -3321,18 +3321,18 @@ inline ::capnp::Orphan< ::capnp::rpc::Payload> Call::Builder::disownParams() {
_builder
.
getPointerField
(
1
*
::
capnp
::
POINTERS
));
}
inline
Call
::
SendResultsTo
::
Reader
Call
::
Reader
::
getSendResultsTo
()
const
{
inline
typename
Call
::
SendResultsTo
::
Reader
Call
::
Reader
::
getSendResultsTo
()
const
{
return
Call
::
SendResultsTo
::
Reader
(
_reader
);
}
inline
Call
::
SendResultsTo
::
Builder
Call
::
Builder
::
getSendResultsTo
()
{
inline
typename
Call
::
SendResultsTo
::
Builder
Call
::
Builder
::
getSendResultsTo
()
{
return
Call
::
SendResultsTo
::
Builder
(
_builder
);
}
#if !CAPNP_LITE
inline
Call
::
SendResultsTo
::
Pipeline
Call
::
Pipeline
::
getSendResultsTo
()
{
inline
typename
Call
::
SendResultsTo
::
Pipeline
Call
::
Pipeline
::
getSendResultsTo
()
{
return
Call
::
SendResultsTo
::
Pipeline
(
_typeless
.
noop
());
}
#endif // !CAPNP_LITE
inline
Call
::
SendResultsTo
::
Builder
Call
::
Builder
::
initSendResultsTo
()
{
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
);
...
...
@@ -3915,18 +3915,18 @@ inline ::capnp::Orphan< ::capnp::rpc::MessageTarget> Disembargo::Builder::disown
_builder
.
getPointerField
(
0
*
::
capnp
::
POINTERS
));
}
inline
Disembargo
::
Context
::
Reader
Disembargo
::
Reader
::
getContext
()
const
{
inline
typename
Disembargo
::
Context
::
Reader
Disembargo
::
Reader
::
getContext
()
const
{
return
Disembargo
::
Context
::
Reader
(
_reader
);
}
inline
Disembargo
::
Context
::
Builder
Disembargo
::
Builder
::
getContext
()
{
inline
typename
Disembargo
::
Context
::
Builder
Disembargo
::
Builder
::
getContext
()
{
return
Disembargo
::
Context
::
Builder
(
_builder
);
}
#if !CAPNP_LITE
inline
Disembargo
::
Context
::
Pipeline
Disembargo
::
Pipeline
::
getContext
()
{
inline
typename
Disembargo
::
Context
::
Pipeline
Disembargo
::
Pipeline
::
getContext
()
{
return
Disembargo
::
Context
::
Pipeline
(
_typeless
.
noop
());
}
#endif // !CAPNP_LITE
inline
Disembargo
::
Context
::
Builder
Disembargo
::
Builder
::
initContext
()
{
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
);
...
...
c++/src/capnp/schema.capnp.h
View file @
539f9d83
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