- 28 Apr, 2017 3 commits
-
-
Kenton Varda authored
This is currently passing.
-
Kenton Varda authored
-
Kenton Varda authored
-
- 27 Apr, 2017 3 commits
-
-
Kenton Varda authored
-
Kenton Varda authored
-
Kenton Varda authored
-
- 26 Apr, 2017 8 commits
-
-
Kenton Varda authored
Add kj-http to cmake build.
-
Kenton Varda authored
-
Harris Hancock authored
-
Harris Hancock authored
-
Kenton Varda authored
Apparently the test has accidentally been using the installed capnp all along.
-
Kenton Varda authored
-
Kenton Varda authored
Fixes #196
-
Kenton Varda authored
Bug fix rollup for 0.6 release
-
- 25 Apr, 2017 19 commits
-
-
Kenton Varda authored
Fixes #212
-
Kenton Varda authored
Specifically, consider: capnp::BuilderFor<capnp::DynamicStruct> capnp::Orphan<capnp::AnyPointer>::getAs<capnp::DynamicStruct>(capnp::StructSchema) Note that `BuilderFor` is a "template using" directive which expands into something more complicated. GCC mangles the symbol as: _ZN5capnp6OrphanINS_10AnyPointerEE5getAsINS_13DynamicStructEEENS_11BuilderFor_IT_Xcl4kindIS6_EEEE4TypeENS_12StructSchemaE Which `c++filt` decodes as: capnp::BuilderFor_<capnp::DynamicStruct, (kind<capnp::DynamicStruct>)()>::Type capnp::Orphan<capnp::AnyPointer>::getAs<capnp::DynamicStruct>(capnp::StructSchema) Note that `BuilderFor_<...>::Type` here ends up being a typedef for `DynamicStruct::Builder`. It seems weird to me that the symbol name would not substitute this typedef. Clang, meanwhile, mangles the symbol as: _ZN5capnp6OrphanINS_10AnyPointerEE5getAsINS_13DynamicStructEEENS_11BuilderFor_IT_Xclgssr5capnpE4kindIS6_EEEE4TypeENS_12StructSchemaE Which `c++filt` does not seem to be able to demangle at all. But, it looks like `capnp::kind` is in there, suggesting that, again, the typedef wasn't substituted. I don't know who is right, but if we inline the whole thing, the problem goes away.
-
Kenton Varda authored
Fixes #251
-
Kenton Varda authored
Fixes #336
-
Kenton Varda authored
Fixes #363.
-
Kenton Varda authored
Fixes #403
-
Kenton Varda authored
Fixes #405
-
Kenton Varda authored
Fixes #435
-
Kenton Varda authored
Fixes #456
-
Kenton Varda authored
Configure Travis CI for Linux and OSX builds.
-
Kenton Varda authored
-
Kenton Varda authored
This is redundant since branches are usually open in order to become PRs, which get their own merged-with-master builds.
-
Kenton Varda authored
-
Kenton Varda authored
-
Kenton Varda authored
I think this is worthwhile since otherwise this header can't be used at all on MSVC, which has all sorts of sad downstream effects. Hopefully we can revert this soon, when MSVC gets fixed.
-
Kenton Varda authored
fix typo in comment
-
Kenton Varda authored
Fix bug where struct equality could ignore some pointer fields.
-
Kenton Varda authored
fix copy-pasto in recently-added test case
-
Kenton Varda authored
update method names in error messages
-
- 24 Apr, 2017 3 commits
-
-
David Renshaw authored
-
Kenton Varda authored
-
Kenton Varda authored
Fixes #174
-
- 22 Apr, 2017 3 commits
-
-
David Renshaw authored
-
David Renshaw authored
-
David Renshaw authored
-
- 21 Apr, 2017 1 commit
-
-
Kenton Varda authored
-