2007-08-26 02:57:10 UTC
Hello I was able to "fix" the unqualified-id error with template => "template class" substitution (as guided by other forums) when I run make this is what I get...
g++ -c -O3 -fpermissive source/layer.cpp source/bitmap.cpp source/functions.cpp
source/supported.cpp
source/supported.cpp: In member function `void nn_utility::WIDROW_HOFF<T>::UpdateLayer(T*, T (&)[300], int, T, T*, T*, bool)':
source/supported.cpp:17: error: `weight' undeclared (first use this function)
source/supported.cpp:17: error: (Each undeclared identifier is reported only once for each function it appears in.)
source/supported.cpp:18: error: `row' undeclared (first use this function)
source/supported.cpp:19: error: `matrix' undeclared (first use this function)
make: *** [install] Error 1
I am using Cygwin and 3.3
are these supposed to be global variables (as I'm guessing lookin at the errors from teh previous poster?