Showing with 1 addition and 2 deletions.
  1. +1 −2 std/experimental/allocator/building_blocks/bucketizer.d
3 changes: 1 addition & 2 deletions std/experimental/allocator/building_blocks/bucketizer.d
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ for $(D Bucketizer). To handle them separately, $(D Segregator) may be of use.
struct Bucketizer(Allocator, size_t min, size_t max, size_t step)
{
import std.traits : hasMember;
import common = std.experimental.allocator.common : roundUpToMultipleOf,
reallocate;
import common = std.experimental.allocator.common : roundUpToMultipleOf;
import std.typecons : Ternary;

static assert((max - (min - 1)) % step == 0,
Expand Down