2020-04-11 16:43:38 +00:00
|
|
|
//# This file is a part of toml++ and is subject to the the terms of the MIT license.
|
|
|
|
//# Copyright (c) 2019-2020 Mark Gillard <mark.gillard@outlook.com.au>
|
|
|
|
//# See https://github.com/marzer/tomlplusplus/blob/master/LICENSE for the full license text.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
2020-07-18 12:10:19 +00:00
|
|
|
#include <iostream>
|
2020-04-11 16:43:38 +00:00
|
|
|
#ifdef _WIN32
|
2020-09-30 13:14:25 +00:00
|
|
|
#include <windows.h>
|
2020-07-18 12:10:19 +00:00
|
|
|
#endif
|
2020-04-11 16:43:38 +00:00
|
|
|
|
2020-07-25 17:37:30 +00:00
|
|
|
inline void init_utf8_console() noexcept
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
SetConsoleOutputCP(65001); //CP_UTF8
|
|
|
|
#endif
|
2020-04-11 16:43:38 +00:00
|
|
|
|
2020-07-25 17:37:30 +00:00
|
|
|
std::cout << std::boolalpha;
|
|
|
|
}
|