Tagged Questions
2
votes
1answer
38 views
std::tr1::array compile error
C++ requires a type specifier for all declarations
...char, 16>>, MAXPreBorder> _preCloselist)
my code is:
std::tr1::unordered_set<std::tr1::array<unsigned char, 16> >
...
2
votes
1answer
215 views
Returning an anonymous tr1 array initialized with boost.assign
Ok, this works on my compiler (vs2008) but I'm trying to figure out if I'm doing something non-standard. Here's a trivial example what I'm doing:
std::tr1::array<int, 3> OneTwoThree() {
...
4
votes
1answer
634 views
How to make tr1::array allocate aligned memory?
You can allocate a std::vector which allocates aligned heap memory by defining your own allocator.
You can allocate a c-style array on the stack using declspec align.
But can you declare a tr1::array ...
3
votes
2answers
1k views
Difference between std::tr1::array and boost::array
I was under the impression that std::tr1::array was the same as the boost::array in that it would throw an exception when accessing an index out of bounds. In fact, I took a peek in the header and it ...
2
votes
1answer
113 views
How does compiler choose between template specializations featuring an array?
I just came across std::tr1::extent template and it puzzled me. I never ever dealt with array type parameters in my life so I don't understand how they work. So, given the code from gcc type_traits
...