Skip to content

Commit

Permalink
Cherry-pie topping: lint + resolve missed conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
eustas committed Dec 3, 2024
1 parent 835e3ac commit 8c3e80e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 10 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/build_test_cross.yml
Original file line number Diff line number Diff line change
Expand Up @@ -235,11 +235,7 @@ jobs:

steps:
- name: Harden Runner
<<<<<<< HEAD
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0
=======
uses: step-security/harden-runner@f086349bfa2bd1361f7909c78558e816508cdc10 # v2.8.0
>>>>>>> d49cb87f (Bump step-security/harden-runner from 2.7.1 to 2.8.0 (#3608))
with:
egress-policy: audit

Expand Down
4 changes: 2 additions & 2 deletions lib/extras/test_memory_manager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@

#include "lib/extras/test_memory_manager.h"

#include "lib/base/memory_manager.h"

#include <cstdlib>

#include "lib/base/memory_manager.h"

namespace jxl {
namespace test {

Expand Down
4 changes: 2 additions & 2 deletions lib/jpegli/adaptive_quantization.cc
Original file line number Diff line number Diff line change
Expand Up @@ -280,8 +280,8 @@ V GammaModulation(const D d, const size_t x, const size_t y,
// ideally -1.0, but likely optimal correction adds some entropy, so slightly
// less than that.
// ln(2) constant folded in because we want std::log but have FastLog2f.
const auto kGam = Set(d, -0.15526878023684174f * 0.693147180559945f);
return MulAdd(kGam, FastLog2f(d, overall_ratio), out_val);
const auto kGamma = Set(d, -0.15526878023684174f * 0.693147180559945f);
return MulAdd(kGamma, FastLog2f(d, overall_ratio), out_val);
}

// Change precision in 8x8 blocks that have high frequency content.
Expand Down
2 changes: 1 addition & 1 deletion tools/benchmark/benchmark_codec.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
#include <vector>

#include "lib/base/data_parallel.h"
#include "lib/base/span.h"
#include "lib/base/memory_manager.h"
#include "lib/base/span.h"
#include "lib/base/status.h"
#include "lib/extras/image.h"
#include "lib/extras/packed_image.h"
Expand Down
2 changes: 1 addition & 1 deletion tools/gauss_blur_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
#include "lib/base/random.h"
#include "lib/base/testing.h"
#include "lib/extras/image_ops.h"
#include "lib/extras/test_utils.h"
#include "lib/extras/test_memory_manager.h"
#include "lib/extras/test_utils.h"

namespace jxl {

Expand Down

0 comments on commit 8c3e80e

Please sign in to comment.