2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-09-01 15:05:56 +00:00

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

@@ -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