Danny Robson
3e480c7bbb
This fixes some stricter warnings and includes arising in gcc-13 and clang-16
30 lines
882 B
C++
30 lines
882 B
C++
/*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*
|
|
* Copyright 2011 Danny Robson <danny@nerdcruft.net>
|
|
*/
|
|
|
|
#include "string.hpp"
|
|
|
|
#include <cstdint>
|
|
|
|
#define do_type_to_string(T) \
|
|
template <> std::string type_to_string <T> (void) { return #T; } \
|
|
template <> std::string type_to_string <const T> (void) { return "const " #T; }
|
|
|
|
do_type_to_string (float)
|
|
do_type_to_string (double)
|
|
|
|
do_type_to_string (std:: int8_t)
|
|
do_type_to_string (std:: int16_t)
|
|
do_type_to_string (std:: int32_t)
|
|
do_type_to_string (std:: int64_t)
|
|
|
|
do_type_to_string (std:: uint8_t)
|
|
do_type_to_string (std::uint16_t)
|
|
do_type_to_string (std::uint32_t)
|
|
do_type_to_string (std::uint64_t)
|
|
|