1. 14 Jun, 2016 1 commit
  2. 09 Jun, 2016 1 commit
  3. 08 Jun, 2016 1 commit
  4. 03 Jun, 2016 1 commit
  5. 31 May, 2016 1 commit
  6. 30 May, 2016 1 commit
  7. 27 May, 2016 4 commits
  8. 25 May, 2016 2 commits
  9. 21 May, 2016 5 commits
  10. 20 May, 2016 15 commits
  11. 19 May, 2016 3 commits
  12. 18 May, 2016 3 commits
    • Branislav Katreniak's avatar
      a435d363
    • Branislav Katreniak's avatar
      capnp/test: add union in generic struct test - compilation error · 682cc0c5
      Branislav Katreniak authored
      Adding union into TestGenerics struct leads to compilation error
      in generated header:
      ````cpp
      In file included from external/capnproto/c++/src/capnp/test_capnp/capnp/test.capnp.c++:4:0:
      external/capnproto/c++/src/capnp/test_capnp/capnp/test.capnp.h:9565:10: error: need ‘typename’ before ‘capnproto_test::capnp::test::TestGenerics<Foo, Bar>::Ug::Reader’ because ‘capnproto_test::capnp::test::TestGenerics<Foo, Bar>::Ug’ is a dependent scope
         inline Ug::Reader getUg() const;
      ````
      Relavant parts in header file:
      
      ````cpp
      template <typename Foo = ::capnp::AnyPointer, typename Bar = ::capnp::AnyPointer>
      struct TestGenerics {
        ...
        struct Ug;
      };
      
      template <typename Foo, typename Bar>
      class TestGenerics<Foo, Bar>::Reader {
        ...
        inline Ug::Reader getUg() const;
      };
      ````
      
      Compiler misses `typename` keyword before Ug::Reader.
      682cc0c5
    • Branislav Katreniak's avatar
      Implement method kj::StringPtr:parseAs<NUMBER_TYPE> · 9de93601
      Branislav Katreniak authored
      This method provides kj-ish interface to parse numbers.
      
      Moves code from capnp json decoder to kj::StringPtr.
      9de93601
  13. 15 May, 2016 1 commit
  14. 10 May, 2016 1 commit