1. 30 May, 2016 1 commit
  2. 27 May, 2016 2 commits
  3. 21 May, 2016 5 commits
  4. 20 May, 2016 15 commits
  5. 19 May, 2016 3 commits
  6. 18 May, 2016 2 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
  7. 15 May, 2016 1 commit
  8. 10 May, 2016 3 commits
  9. 06 May, 2016 1 commit
  10. 03 May, 2016 2 commits
  11. 02 May, 2016 1 commit
  12. 01 May, 2016 2 commits
  13. 29 Apr, 2016 1 commit
  14. 27 Apr, 2016 1 commit