There are some typedefs without associated typenames in jdk/src/java.base/windows/native/libnio/ch/Net.c.
They are of the form
typedef struct <tag> { <member>... };
These are equivalent to
struct <tag> { <member>... };
However, some compilers (including VS2015: C4091) may warn about the useless typedef keyword.
They are of the form
typedef struct <tag> { <member>... };
These are equivalent to
struct <tag> { <member>... };
However, some compilers (including VS2015: C4091) may warn about the useless typedef keyword.
- relates to
-
JDK-8145549 Add support for Visual Studio 2015 Community edition
-
- Closed
-