mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 16:56:17 +02:00
19 lines
267 B
C++
19 lines
267 B
C++
|
#include "build-result.hh"
|
||
|
|
||
|
namespace nix {
|
||
|
|
||
|
GENERATE_CMP_EXT(
|
||
|
,
|
||
|
BuildResult,
|
||
|
me->status,
|
||
|
me->errorMsg,
|
||
|
me->timesBuilt,
|
||
|
me->isNonDeterministic,
|
||
|
me->builtOutputs,
|
||
|
me->startTime,
|
||
|
me->stopTime,
|
||
|
me->cpuUser,
|
||
|
me->cpuSystem);
|
||
|
|
||
|
}
|