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
31a375f4
Commit
31a375f4
authored
May 13, 2014
by
Kenton Varda
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:kentonv/capnproto
parents
c1329572
8009807e
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
16 additions
and
3 deletions
+16
-3
list.h
c++/src/capnp/list.h
+13
-0
rpc-twoparty.capnp
c++/src/capnp/rpc-twoparty.capnp
+1
-1
rpc-twoparty.capnp.c++
c++/src/capnp/rpc-twoparty.capnp.c++
+0
-0
rpc.capnp
c++/src/capnp/rpc.capnp
+1
-1
rpc.capnp.c++
c++/src/capnp/rpc.capnp.c++
+0
-0
schema.capnp
c++/src/capnp/schema.capnp
+1
-1
schema.capnp.c++
c++/src/capnp/schema.capnp.c++
+0
-0
No files found.
c++/src/capnp/list.h
View file @
31a375f4
...
...
@@ -27,6 +27,9 @@
#include "layout.h"
#include "orphan.h"
#include <initializer_list>
#ifdef KJ_STD_COMPAT
#include <iterator>
#endif // KJ_STD_COMPAT
namespace
capnp
{
namespace
_
{
// private
...
...
@@ -506,4 +509,14 @@ private:
}
// namespace capnp
#ifdef KJ_STD_COMPAT
namespace
std
{
template
<
typename
Container
,
typename
Element
>
struct
iterator_traits
<
capnp
::
_
::
IndexingIterator
<
Container
,
Element
>>
:
public
std
::
iterator
<
std
::
random_access_iterator_tag
,
Element
,
int
>
{};
}
// namespace std
#endif // KJ_STD_COMPAT
#endif // CAPNP_LIST_H_
c++/src/capnp/rpc-twoparty.capnp
View file @
31a375f4
...
...
@@ -71,7 +71,7 @@
# two-party protocol initially, and then pair applications with an appropriate proxy written in
# C++, rather than implement other parameterizations of the RPC protocol directly.
using Cxx = import "c++.capnp";
using Cxx = import "
/capnp/
c++.capnp";
$Cxx.namespace("capnp::rpc::twoparty");
enum Side {
...
...
c++/src/capnp/rpc-twoparty.capnp.c++
View file @
31a375f4
This diff is collapsed.
Click to expand it.
c++/src/capnp/rpc.capnp
View file @
31a375f4
...
...
@@ -111,7 +111,7 @@
# bother implementing any other vat network protocol -- just use the correct container type and get
# it for free.
using Cxx = import "c++.capnp";
using Cxx = import "
/capnp/
c++.capnp";
$Cxx.namespace("capnp::rpc");
# ========================================================================================
...
...
c++/src/capnp/rpc.capnp.c++
View file @
31a375f4
This diff is collapsed.
Click to expand it.
c++/src/capnp/schema.capnp
View file @
31a375f4
...
...
@@ -21,7 +21,7 @@
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
using Cxx = import "c++.capnp";
using Cxx = import "
/capnp/
c++.capnp";
@0xa93fc509624c72d9;
$Cxx.namespace("capnp::schema");
...
...
c++/src/capnp/schema.capnp.c++
View file @
31a375f4
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