Code review for standard library header usage (#207)

This commit is contained in:
Chuck Walbourn
2020-12-29 18:04:51 -08:00
committed by GitHub
parent e53571de0b
commit e14c36125c
9 changed files with 48 additions and 44 deletions

View File

@@ -9,16 +9,16 @@
#define WIN32_LEAN_AND_MEAN
#define NOMINMAX
#include <windows.h>
#include <assert.h>
#include <stdio.h>
#include <dxgiformat.h>
#include <d3d11.h>
#include <Windows.h>
#include <algorithm>
#include <cassert>
#include <cstdio>
#include <directxmath.h>
#include <dxgiformat.h>
#include <d3d11_1.h>
#include <DirectXMath.h>
#pragma warning(disable : 4619 4616 26812)