blob: 66561100df1ab8e091e6161d64655cabf5a26ae2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
//
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2026
//
// 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"
char disable_linker_warning_about_empty_file_platform_cpp TD_UNUSED;
#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
#endif
|