Skip to content

Commit

Permalink
fix: explicit using x for x.state.
Browse files Browse the repository at this point in the history
  • Loading branch information
MoonBoi9001 committed Oct 1, 2024
1 parent 4851775 commit 3d0240e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { Math } from "@openzeppelin/contracts/utils/math/Math.sol";
* @notice A library to handle Allocations.
*/
library Allocation {
using Allocation for State;
using Allocation for Allocation.State;

/**
* @notice Allocation details
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pragma solidity 0.8.27;
* @notice A library to handle legacy Allocations.
*/
library LegacyAllocation {
using LegacyAllocation for State;
using LegacyAllocation for LegacyAllocation.State;

/**
* @notice Legacy allocation details
Expand Down

0 comments on commit 3d0240e

Please sign in to comment.