Skip to content

Commit

Permalink
Remove deprecated -dip25 switch
Browse files Browse the repository at this point in the history
It's enabled by default / deprecated now, and also implied by dip1000
  • Loading branch information
dkorpel authored Apr 19, 2024
1 parent 7d77579 commit b263160
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dub.sdl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ configuration "unittest" {
sourcePaths "tests"
mainSourceFile "tests/ut_main.d"

dflags "-preview=dip25" "-preview=dip1000" "-preview=dip1008"
dflags "-preview=dip1000" "-preview=dip1008"
versions "AutomemTesting"

dependency "unit-threaded" version="*"
Expand All @@ -35,7 +35,7 @@ configuration "asan" {
mainSourceFile "tests/ut_main.d"

# -preview=dip1008 causes asan issues with malloc
dflags "-preview=dip25" "-preview=dip1000"
dflags "-preview=dip1000"
dflags "-fsanitize=address" platform="ldc"

// unit threaded light is necessary for the tests to actually run
Expand All @@ -53,7 +53,7 @@ configuration "utl" {
importPaths "tests"
sourcePaths "tests"

dflags "-preview=dip25" "-preview=dip1000" "-preview=dip1008"
dflags "-preview=dip1000" "-preview=dip1008"

versions "AutomemTesting" "unitThreadedLight"

Expand Down

0 comments on commit b263160

Please sign in to comment.