refactor(tvix): Very minor lint fixes
Change-Id: I4aca504d98c79f931b7faadff86f40d27ed5a2c5 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1719 Tested-by: BuildkiteCI Reviewed-by: kanepyork <rikingcoding@gmail.com>
This commit is contained in:
parent
c9d5262aa7
commit
e38015f7b5
2 changed files with 4 additions and 3 deletions
3
third_party/nix/src/libexpr/eval.cc
vendored
3
third_party/nix/src/libexpr/eval.cc
vendored
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
#include <algorithm>
|
||||
#include <chrono>
|
||||
#include <cstdint>
|
||||
#include <cstring>
|
||||
#include <fstream>
|
||||
#include <iostream>
|
||||
|
|
@ -903,7 +904,7 @@ static std::string showAttrPath(EvalState& state, Env& env,
|
|||
return out.str();
|
||||
}
|
||||
|
||||
unsigned long nrLookups = 0;
|
||||
uint64_t nrLookups = 0;
|
||||
|
||||
void ExprSelect::eval(EvalState& state, Env& env, Value& v) {
|
||||
Value vTmp;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue