Closed
Bug 1298403
Opened 9 years ago
Closed 9 years ago
clang-cl warnings: fields initialized out of order in TextureD3D9.cpp
Categories
(Core :: Graphics, defect)
Core
Graphics
Tracking
()
RESOLVED
FIXED
mozilla52
Tracking | Status | |
---|---|---|
firefox52 | --- | fixed |
People
(Reporter: froydnj, Unassigned)
References
Details
clang-cl complains thusly:
16:23.04 c:/m-c/gfx/layers/d3d9/TextureD3D9.cpp(743,3): warning: field 'mFormat' will be initialized after field 'mTexture' [-Wreorder]
16:23.04 : mFormat(aFormat)
16:23.04 ^
16:23.04 c:/m-c/gfx/layers/d3d9/TextureD3D9.cpp(745,3): warning: field 'mHandle' will be initialized after field 'mDevice' [-Wreorder]
16:23.04 , mHandle(aHandle)
16:23.04 ^
Pushed by jmuizelaar@mozilla.com:
https://hg.mozilla.org/integration/mozilla-inbound/rev/857e5699df7b
Reorder fields to avoid clang-cl warning.
Comment 2•9 years ago
|
||
bugherder |
Status: NEW → RESOLVED
Closed: 9 years ago
status-firefox52:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla52
You need to log in
before you can comment on or make changes to this bug.
Description
•