Closed
Bug 1307411
Opened 9 years ago
Closed 9 years ago
Incorrect usage of `inline` in mpi.c
Categories
(NSS :: Libraries, defect)
NSS
Libraries
Tracking
(Not tracked)
RESOLVED
DUPLICATE
of bug 1311175
People
(Reporter: ted, Unassigned)
Details
The mpi code has a number of functions marked `inline`, such as:
https://dxr.mozilla.org/mozilla-central/source/security/nss/lib/freebl/mpi/mpi.c#2764
When attempting to build this code with the usual Firefox MSVC build options it caused build failures, because we build with /Zc:inline:
https://msdn.microsoft.com/en-us/library/dn642448.aspx
These declarations are not correct, so they're omitted from the generated code.
| Reporter | ||
Updated•9 years ago
|
Status: NEW → RESOLVED
Closed: 9 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•