Skip to content

Commit

Permalink
Remove spurious deprecation lookup warning
Browse files Browse the repository at this point in the history
  • Loading branch information
andralex committed May 27, 2016
1 parent a207b27 commit 140c514
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 140c514

Please sign in to comment.