From b2631602078b77003b31247cc611b98ecccb5c95 Mon Sep 17 00:00:00 2001 From: Dennis Date: Fri, 19 Apr 2024 21:06:41 +0200 Subject: [PATCH] Remove deprecated -dip25 switch It's enabled by default / deprecated now, and also implied by dip1000 --- dub.sdl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dub.sdl b/dub.sdl index 5d8b08b..e03711d 100644 --- a/dub.sdl +++ b/dub.sdl @@ -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="*" @@ -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 @@ -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"