Silence MSVC warning and remove pointless glew utilities

This commit is contained in:
Jack Andersen 2019-05-26 15:49:50 -10:00
parent 981b374232
commit fc7cffbf37
4 changed files with 5 additions and 18179 deletions

View File

@ -8,6 +8,10 @@ integrate_dew()
include(cmake/generate_product_version.cmake) include(cmake/generate_product_version.cmake)
if(MSVC)
add_compile_options(/WX /wd4267 /wd4100 /wd4101 /wd4189)
endif()
# Set where the binary files will be built. The program will not execute from # Set where the binary files will be built. The program will not execute from
# here. You must run "make install" to install these to the proper location # here. You must run "make install" to install these to the proper location
# as defined above. # as defined above.

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -30,7 +30,7 @@ class CResTypeInfo
// Private Methods // Private Methods
CResTypeInfo(EResourceType Type, const TString& rkTypeName, const TString& rkRetroExtension); CResTypeInfo(EResourceType Type, const TString& rkTypeName, const TString& rkRetroExtension);
~CResTypeInfo() = default; ~CResTypeInfo() = default;
friend class std::default_delete<CResTypeInfo>; friend struct std::default_delete<CResTypeInfo>;
// Public Methods // Public Methods
public: public: