Switch to warning level 4 (#240)

This commit is contained in:
Andreas Süßenbach
2018-08-17 17:47:48 +02:00
committed by Markus Tavenrath
parent 58873a31ef
commit a9b5b68572
14 changed files with 46 additions and 37 deletions

View File

@@ -19,6 +19,7 @@
#include "vulkan/vulkan.hpp"
#define GLM_FORCE_RADIANS
#pragma warning(disable:4201) // disable warning C4201: nonstandard extension used: nameless struct/union; needed to get glm/detail/type_vec?.hpp without warnings
#include <glm/gtc/matrix_transform.hpp>
static char const* AppName = "10_InitRenderPass";
@@ -105,7 +106,7 @@ HWND initializeWindow(std::string const& className, std::string const& windowNam
#pragma error "unhandled platform"
#endif
int main(int argc, char *argv[])
int main(int /*argc*/, char * /*argv[]*/)
{
try
{