I am getting an undefined reference error:
/afs/ec.auckland.ac.nz/users/c/s/cshe079/unixhome/Desktop/306P1/ARToolKit/examples/simple/simpleTest.cc:161: undefined reference to `affine_transformation_range::~affine_transformation_range()' collect2: ld returned 1 exit status
I am including the file which has the ~affine_transformation_range() function in it, but it cannot seem to find it. The function itself is empty, which makes it more confusing.
This is the declaration in the function's header:
~affine_transformation_range(void);
This is the function itself:
affine_transformation_range::~affine_transformation_range(void)
{
}