Skip to content

Commit

Permalink
Use std.experimental.allocator in place of stdx.allocator
Browse files Browse the repository at this point in the history
  • Loading branch information
nordlow committed Jun 20, 2022
1 parent 2bfd3d0 commit c52d6dc
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 8 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,5 @@ stdout.txt
# Dub files
.dub
dub.selections.json

dcd-test-library
4 changes: 2 additions & 2 deletions dub.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
],
"license": "GPL-3.0",
"dependencies": {
"dsymbol": ">=0.11.2 <0.12.0",
"libdparse": ">=0.15.4 <0.16.0",
"dsymbol": "~master",
"libdparse": "~>0.19.3",
":common": "*",
"stdx-allocator": "~>2.77.5",
"emsi_containers": "~>0.8.0"
Expand Down
2 changes: 1 addition & 1 deletion src/dcd/server/autocomplete/util.d
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
module dcd.server.autocomplete.util;

import std.algorithm;
import stdx.allocator;
import std.experimental.allocator;
import std.experimental.logger;
import std.range;
import std.string;
Expand Down
4 changes: 2 additions & 2 deletions src/dcd/server/main.d
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ import std.array;
import std.conv;
import std.datetime.stopwatch : AutoStart, StopWatch;
import std.exception : enforce;
import stdx.allocator;
import stdx.allocator.mallocator;
import std.experimental.allocator;
import std.experimental.allocator.mallocator;
import std.experimental.logger;
import std.file;
import std.getopt;
Expand Down
1 change: 0 additions & 1 deletion stdx-allocator
Submodule stdx-allocator deleted from d6e6ce

0 comments on commit c52d6dc

Please sign in to comment.