Tenho um problema com este construtor de estrutura quando tento compilar este código:
typedef struct Node
{
Node( int data ) //
{
this->data = data;
previous = NULL; // Compiler indicates here
next = NULL;
}
int data;
Node* previous;
Node* next;
} NODE;
quando eu venho este erro ocorre:
\linkedlist\linkedlist.h||In constructor `Node::Node(int)':|
\linkedlist\linkedlist.h|9|error: `NULL' was not declared in this scope|
||=== Build finished: 1 errors, 0 warnings ===|
O último problema foi a estrutura, mas funcionou bem quando estava no meu main.cpp, desta vez está em um arquivo de cabeçalho e está me causando esse problema. Estou usando Code :: Blocks para compilar este código