2014-10-01 19:52:25 +01:00
|
|
|
/*
|
|
|
|
* InspIRCd -- Internet Relay Chat Daemon
|
|
|
|
*
|
2017-03-22 17:44:33 +00:00
|
|
|
* Copyright (C) 2016 Attila Molnar <attilamolnar@hush.com>
|
2021-02-26 06:58:13 +00:00
|
|
|
* Copyright (C) 2014-2015, 2017, 2021 Sadie Powell <sadie@witchery.services>
|
2014-10-01 19:52:25 +01:00
|
|
|
*
|
|
|
|
* This file is part of InspIRCd. InspIRCd is free software: you can
|
|
|
|
* redistribute it and/or modify it under the terms of the GNU General Public
|
|
|
|
* License as published by the Free Software Foundation, version 2.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
|
|
* details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <iostream>
|
2021-02-01 17:00:19 +00:00
|
|
|
#if defined _LIBCPP_VERSION || __cplusplus >= 201103L
|
2016-08-08 15:07:32 +02:00
|
|
|
# include <array>
|
2015-02-18 15:20:58 +00:00
|
|
|
# include <type_traits>
|
2014-10-01 19:52:25 +01:00
|
|
|
# include <unordered_map>
|
|
|
|
#else
|
2016-08-08 15:07:32 +02:00
|
|
|
# include <tr1/array>
|
2015-02-18 15:20:58 +00:00
|
|
|
# include <tr1/type_traits>
|
2014-10-01 19:52:25 +01:00
|
|
|
# include <tr1/unordered_map>
|
|
|
|
#endif
|
|
|
|
|
2015-02-20 19:14:31 +00:00
|
|
|
#if defined __llvm__ && !defined __clang__ && __GNUC__ == 4 && __GNUC_MINOR__ == 2 && __GNUC_PATCHLEVEL__ == 1
|
2015-02-18 15:30:08 +00:00
|
|
|
# error "LLVM-GCC 4.2.1 has broken visibility support."
|
|
|
|
#endif
|
|
|
|
|
2014-10-01 19:52:25 +01:00
|
|
|
int main() {
|
|
|
|
std::cout << "Hello, World!" << std::endl;
|
|
|
|
return 0;
|
|
|
|
}
|