/* * 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 */ #include "string.hpp" #include #define do_type_to_string(T) \ template <> std::string type_to_string (void) { return #T; } \ template <> std::string type_to_string (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)