diff options
author | Brad King <brad.king@kitware.com> | 2019-10-01 13:29:11 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-10-01 16:25:43 (GMT) |
commit | 42ef28b4f3b2f1af5508319b69352647d7e00985 (patch) | |
tree | 2c116ccc34693f2d3d6ae130ece5a4a1d295d452 /Source/cm_sys_stat.h | |
parent | 62d65286e71c58c88646f2f851edf7669fd40a41 (diff) | |
download | CMake-42ef28b4f3b2f1af5508319b69352647d7e00985.zip CMake-42ef28b4f3b2f1af5508319b69352647d7e00985.tar.gz CMake-42ef28b4f3b2f1af5508319b69352647d7e00985.tar.bz2 |
Remove unused uid_t/gid_t types on Windows
These were added and used by commit 5299141320 (CPackDeb: Enable the DEB
generator on Windows, 2017-06-17, v3.10.0-rc1~445^2) but have not been
used since commit df556e65f2 (cmCPackDebGenerator: Use libarchive to
create .deb file, 2017-08-24, v3.10.0-rc1~220^2).
Diffstat (limited to 'Source/cm_sys_stat.h')
-rw-r--r-- | Source/cm_sys_stat.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Source/cm_sys_stat.h b/Source/cm_sys_stat.h index eb874c7..9194286 100644 --- a/Source/cm_sys_stat.h +++ b/Source/cm_sys_stat.h @@ -7,11 +7,6 @@ using mode_t = unsigned short; #endif -#if defined(WIN32) -using uid_t = unsigned short; -using gid_t = unsigned short; -#endif - #include <sys/types.h> // include sys/stat.h after sys/types.h #include <sys/stat.h> // IWYU pragma: export |