j
k
j a
j l
On 08/07/10 08:11, Timothy Madden wrote:
...struct tuple_tree : std::tr1::tuple < float , int , std::vector<tuple_tree*> ...{ }; I can use vector<tuple_tree> directly
struct tuple_tree : std::tr1::tuple < float , int , std::vector<tuple_tree*> ...{ };
struct tuple_tree : std::tr1::tuple < float , int , std::vector<tuple_tree*>
{ };
I can use vector<tuple_tree> directly
This is not allowed by the C++ standard. Types must be complete.
Back to the thread
Back to the list