diff options
author | Iain Buclaw <ibuclaw@gdcproject.org> | 2025-03-12 12:04:59 +0100 |
---|---|---|
committer | Iain Buclaw <ibuclaw@gdcproject.org> | 2025-03-12 15:38:28 +0100 |
commit | d63b52e059a7d77b98a2ef005920a85feb1e2446 (patch) | |
tree | bc3f8f9879d5b32aadaa0835508741a1b07471f0 /libphobos/src/std/datetime | |
parent | 6e4045513d789587b2c7750e9016c7035b461299 (diff) | |
download | gcc-d63b52e059a7d77b98a2ef005920a85feb1e2446.zip gcc-d63b52e059a7d77b98a2ef005920a85feb1e2446.tar.gz gcc-d63b52e059a7d77b98a2ef005920a85feb1e2446.tar.bz2 |
libphobos: Merge upstream phobos 0faae92d6
Phobos changes:
- Import phobos v2.111.0-beta.1.
- Added `bitCast' function to `std.conv'.
- Added `readfln' and `File.readfln' functions to `std.stdio'.
- New procedural API for `std.sumtype'.
libphobos/ChangeLog:
* src/MERGE: Merge upstream phobos 0faae92d6.
* testsuite/libphobos.phobos/std_array.d: Regenerate.
* testsuite/libphobos.phobos/std_conv.d: Regenerate.
* testsuite/libphobos.phobos/std_functional.d: Regenerate.
* testsuite/libphobos.phobos/std_sumtype.d: Regenerate.
Diffstat (limited to 'libphobos/src/std/datetime')
-rw-r--r-- | libphobos/src/std/datetime/stopwatch.d | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libphobos/src/std/datetime/stopwatch.d b/libphobos/src/std/datetime/stopwatch.d index eedc0ea..1dc303f 100644 --- a/libphobos/src/std/datetime/stopwatch.d +++ b/libphobos/src/std/datetime/stopwatch.d @@ -166,7 +166,6 @@ public: Thread.sleep(usecs(1)); sw.reset(); - assert(sw.peek() < msecs(1)); assert(sw._timeStarted > before); assert(sw._timeStarted <= MonoTime.currTime); } |