Skip to content

Commit

Permalink
Fix issue 11989 -- deprecate TickDuration, it's no longer used anywhe…
Browse files Browse the repository at this point in the history
…re. (#15024)
  • Loading branch information
schveiguy authored Apr 7, 2023
1 parent 0775845 commit 525d90a
Show file tree
Hide file tree
Showing 2 changed files with 142 additions and 89 deletions.
8 changes: 4 additions & 4 deletions compiler/test/runnable/testpdb.d
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import core.demangle;
void main(string[] args)
{
// https://issues.dlang.org/show_bug.cgi?id=4014
// -gf should drag in full definitions of Object, TickDuration and ClockType
// -gf should drag in full definitions of Object, Duration and ClockType
Object o = new Object;
TickDuration duration; // struct
Duration duration; // struct
ClockType ct; // enumerator

version (CRuntime_Microsoft)
Expand All @@ -29,8 +29,8 @@ void main(string[] args)
testSymbolHasChildren(objsym, "object.Object");
objsym.Release();

IDiaSymbol ticksym = searchSymbol(globals, "core.time.TickDuration");
testSymbolHasChildren(ticksym, "core.time.TickDuration");
IDiaSymbol ticksym = searchSymbol(globals, "core.time.Duration");
testSymbolHasChildren(ticksym, "core.time.Duration");
ticksym.Release();

IDiaSymbol ctsym = searchSymbol(globals, "core.time.ClockType");
Expand Down
Loading

0 comments on commit 525d90a

Please sign in to comment.