-
- Downloads
compile with g++-4.3
since 4.3 g++ makes sure the meaning of names isn't changed. .------------------------------ namespace ns { template <typename T> struct foo {}; struct bar { typedef foo<double> foo; }; } .----------------------------- will not compile, you have to use explicitd scoping. .-- typedef foo<double> foo; ++ typedef ns::foo<double> foo; In case that you use class foo several times like: .----------------------------- struct bar { foo<int> f; typedef ns::foo<double> foo; }; .----------------------------- The code will also not compile, because foo<int> already pulls ns:foo into the scope of ns::bar. Again you will have to specify the scope. .-- foo<int> f; ++ ns::foo<int> f; [[Imported from SVN: r909]]
Showing
- istl/bcrsmatrix.hh 2 additions, 0 deletionsistl/bcrsmatrix.hh
- istl/communicator.hh 2 additions, 2 deletionsistl/communicator.hh
- istl/indexset.hh 2 additions, 2 deletionsistl/indexset.hh
- istl/interface.hh 2 additions, 2 deletionsistl/interface.hh
- istl/owneroverlapcopy.hh 10 additions, 10 deletionsistl/owneroverlapcopy.hh
- istl/remoteindices.hh 9 additions, 9 deletionsistl/remoteindices.hh
- istl/superlu.hh 4 additions, 4 deletionsistl/superlu.hh
- istl/supermatrix.hh 2 additions, 2 deletionsistl/supermatrix.hh
Loading
Please register or sign in to comment