2021-04-30 00:24:42 +02:00
|
|
|
//
|
2022-01-01 01:35:39 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
|
2021-04-30 00:24:42 +02:00
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
|
|
|
#include "td/utils/port/platform.h"
|
|
|
|
|
2021-09-02 10:51:33 +02:00
|
|
|
char disable_linker_warning_about_empty_file_platform_cpp TD_UNUSED;
|
|
|
|
|
2021-04-30 00:24:42 +02:00
|
|
|
#if !TD_MSVC
|
|
|
|
|
|
|
|
#if TD_DARWIN_UNKNOWN
|
|
|
|
#warning "Probably unsupported Apple operating system. Feel free to try to compile"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if TD_UNIX_UNKNOWN
|
|
|
|
#warning "Probably unsupported Unix operating system. Feel free to try to compile"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if TD_COMPILER_UNKNOWN
|
|
|
|
#warning "Probably unsupported compiler. Feel free to try to compile"
|
|
|
|
#endif
|
|
|
|
|
2021-12-27 12:03:50 +01:00
|
|
|
#endif
|