Codechange: Move includes for common STL headers to stdafx.

This commit is contained in:
Peter Nelson
2023-05-17 09:08:39 +01:00
committed by PeterN
parent a5cf362886
commit 56085be9bd
72 changed files with 5 additions and 98 deletions

View File

@@ -53,6 +53,7 @@
#endif
#include <algorithm>
#include <array>
#include <cassert>
#include <cctype>
#include <cerrno>
@@ -65,12 +66,16 @@
#include <cstring>
#include <cstdlib>
#include <cwchar>
#include <deque>
#include <exception>
#include <functional>
#include <iterator>
#include <list>
#include <limits>
#include <map>
#include <memory>
#include <optional>
#include <set>
#include <stdexcept>
#include <string>
#include <type_traits>