In file included from ./data/fileio/MatrixFile.h:19:0,
from data/fft/FFTFileCacheReader.h:19,
from data/fft/FFTFileCacheReader.cpp:16:
./base/ResizeableBitset.h:27:29: error: expected ‘)’ before ‘size’
./base/ResizeableBitset.h:43:17: error: ‘size_t’ has not been declared
---------------------
simply adding
#include <stdlib.h>
to the boilerplate of base/ResizeableBitset.h solves the issue.
Nobody/Anonymous
None
SVN build
Public
|
Date: 2011-08-10 03:04:42 PDT Note that the SVN repository has been defunct for some time -- the code is |
|
Date: 2011-08-04 06:05:06 PDT That probably should be #include <cstddef> rather than <stdlib.h> - |