Closed PartialVolume closed 5 years ago
Recent commit #112 broke compilation.
Order of headers was changed from the correct order, i.e.
to the following which caused multiple compilation errors.
I'm assuming this was because of clang processing.
Will issue a fix later today.
Fixed by #119
Recent commit #112 broke compilation.
Order of headers was changed from the correct order, i.e.
include "nwipe.h"
include "context.h"
include "method.h"
include "prng.h"
include "options.h"
include "logging.h"
include "version.h"
to the following which caused multiple compilation errors.
include "options.h"
include "context.h"
include "logging.h"
include "method.h"
include "nwipe.h"
include "prng.h"
include "version.h"
I'm assuming this was because of clang processing.
Will issue a fix later today.