Move std and gsl includes to precompiled header.

This commit is contained in:
John Preston 2017-08-13 19:17:16 +03:00
parent c8810f87b9
commit 7ad21ff713
2 changed files with 8 additions and 5 deletions

View File

@ -21,11 +21,6 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
#pragma once
#include "core/basic_types.h"
#include <array>
#include <vector>
#include <algorithm>
#include <set>
#include <gsl/gsl>
// Release build assertions.
inline void t_noop() {

View File

@ -56,6 +56,14 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
#include <QtWidgets/QtWidgets>
#include <QtNetwork/QtNetwork>
#include <array>
#include <vector>
#include <set>
#include <map>
#include <algorithm>
#include <memory>
#include <gsl/gsl>
#include "core/basic_types.h"
#include "logs.h"
#include "core/utils.h"