In file included from /in/Compile/dlist_pre.cpp:2:
In file included from /in/Compile/dlist.h:78:
/in/dlist_impl.h:59:9: error: 'emptyList' does not refer to a value
throw emptyList;
^
/in/Compile/dlist.h:4:7: note: declared here
class emptyList
^
In file included from /in/Compile/dlist_pre.cpp:2:
In file included from /in/Compile/dlist.h:78:
/in/dlist_impl.h:79:2: error: use of undeclared identifier 'fist'; did you mean 'first'?
fist = NULL;
^~~~
first
/in/Compile/dlist.h:54:13: note: 'first' declared here
node *first; // The pointer to the first node (NULL if none)
^
2 errors generated.
/in/Compile/Makefile:29: recipe for target 'buildDlistPretest' failed
make: *** [buildDlistPretest] Error 1