Replace old C headers with the C++ ones (#1099)

This commit is contained in:
pi1024e 2020-03-23 11:44:06 -04:00 committed by GitHub
parent 2d7133f5b7
commit 475aafdbc4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -21,6 +21,6 @@
#include <vector>
#include <winerror.h>
#include <iostream>
#include <math.h>
#include <cmath>
#include <random>
#include <iomanip>

View File

@ -21,7 +21,7 @@
#include <windows.h>
#include <collection.h>
#include <ppltasks.h>
#include <assert.h>
#include <cassert>
#include <concrt.h>
#include <string>
#include <bitset>

View File

@ -17,7 +17,7 @@
#include <concrt.h>
#include <future>
#include <memory>
#include <assert.h>
#include <cassert>
#include <functional>
#include <string>
#include <sstream>