Mam problem z tym konstruktorem struktury, gdy próbuję skompilować ten kod:
typedef struct Node
{
Node( int data ) //
{
this->data = data;
previous = NULL; // Compiler indicates here
next = NULL;
}
int data;
Node* previous;
Node* next;
} NODE;
kiedy przychodzę pojawia się ten błąd:
\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 ===|
Ostatnim problemem była struktura, ale działała dobrze, gdy znajdowała się w moim main.cpp, tym razem jest w pliku nagłówkowym i daje mi ten problem. Do kompilacji tego kodu używam Code :: Blocks