Use brackets include for third-party libraries

This commit is contained in:
Ilya Fedin 2022-06-05 13:31:55 +04:00 committed by John Preston
parent 6ee08faa24
commit 08b99134fa
5 changed files with 9 additions and 8 deletions

View file

@ -7,7 +7,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
*/
#pragma once
#include "TgVoip.h"
#include <TgVoip.h>
namespace Calls {

View file

@ -22,7 +22,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#pragma warning(push)
#pragma warning(disable:4091)
#include "client/windows/handler/exception_handler.h"
#include <client/windows/handler/exception_handler.h>
#pragma warning(pop)
#elif defined Q_OS_UNIX // Q_OS_WIN
@ -36,14 +36,14 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include <unistd.h>
#ifdef MAC_USE_BREAKPAD
#include "client/mac/handler/exception_handler.h"
#include <client/mac/handler/exception_handler.h>
#else // MAC_USE_BREAKPAD
#include "client/crashpad_client.h"
#include <client/crashpad_client.h>
#endif // else for MAC_USE_BREAKPAD
#else // Q_OS_MAC
#include "client/linux/handler/exception_handler.h"
#include <client/linux/handler/exception_handler.h>
#endif // Q_OS_MAC

View file

@ -10,7 +10,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "scheme-dump_to_text.h"
#include "scheme.h"
#include "zlib.h"
#include <zlib.h>
namespace MTP::details {

View file

@ -21,7 +21,8 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "base/openssl_help.h"
#include "base/unixtime.h"
#include "base/platform/base_platform_info.h"
#include "zlib.h"
#include <zlib.h>
namespace MTP {
namespace details {

View file

@ -35,7 +35,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "base/custom_app_icon.h"
#include "boxes/abstract_box.h" // Ui::show().
#include "zlib.h"
#include <zlib.h>
namespace Settings {
namespace {