Bug 13230 – std.variant.Variant Uses Deprecated .min Property in opArithmetic When T is a Floating Point Type

Status
RESOLVED
Resolution
FIXED
Severity
normal
Priority
P1
Component
dmd
Product
D
Version
D2
Platform
All
OS
All
Creation time
2014-07-31T06:58:00Z
Last change time
2014-08-04T08:54:05Z
Assigned to
nobody
Creator
monkeyworks12

Comments

Comment #0 by monkeyworks12 — 2014-07-31T06:58:27Z
import std.variant; void main() { Variant v = 1.0f; //Deprecation: min property is deprecated, use min_normal instead v += 1.0f; }
Comment #1 by monkeyworks12 — 2014-07-31T07:07:22Z
Comment #2 by github-bugzilla — 2014-08-04T08:54:04Z
Commit pushed to master at https://github.com/D-Programming-Language/phobos https://github.com/D-Programming-Language/phobos/commit/cacd5f645f5edc0f1143064304df170f8b3ec3d0 Merge pull request #2386 from MetaLang/variant-remove-float-min Fix Issue 13230: std.variant.Variant Uses Deprecated .min Property in opArithmetic When T is a Floating Point Type