Skip to content

Commit

Permalink
Merge pull request #4371 from andralex/spurious-warning
Browse files Browse the repository at this point in the history
Remove spurious deprecation lookup warning
  • Loading branch information
dnadlinger committed May 27, 2016
2 parents a207b27 + 140c514 commit a51ab64
Showing 1 changed file with 1 addition and 2 deletions.
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

0 comments on commit a51ab64

Please sign in to comment.