Bug 718382 - IPCMessageUtils.h(70) : warning C4099: 'base::FileDescriptor' : type name first seen using 'struct' now seen using 'class'. r=cjones

This commit is contained in:
Makoto Kato 2012-01-18 11:01:51 +09:00
parent 48459baa04
commit 5bcdf742d5

View File

@ -67,7 +67,7 @@
// base::FileDescriptor acts as a static assert that we only get one
// def or the other (or neither, in which case code using
// FileDescriptor fails to build)
namespace base { class FileDescriptor { }; }
namespace base { struct FileDescriptor { }; }
#endif
using mozilla::layers::LayerManager;