Skip to content

Commit

Permalink
apply requested changes
Browse files Browse the repository at this point in the history
* `FMT_USE_NONTYPE_TEMPLATE_PARAMETERS` define added
* `std::size_t` changed to `size_t`
  • Loading branch information
alexezeder committed Dec 2, 2020
1 parent 506230b commit 8c8b1cc
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
18 changes: 11 additions & 7 deletions include/fmt/compile.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@

#include "format.h"

#if !defined(FMT_USE_NONTYPE_TEMPLATE_PARAMETERS) && \
defined(__cpp_nontype_template_parameter_class) && \
(!FMT_GCC_VERSION || FMT_GCC_VERSION >= 903)
# define FMT_USE_NONTYPE_TEMPLATE_PARAMETERS
#endif

FMT_BEGIN_NAMESPACE
namespace detail {

Expand All @@ -37,20 +43,19 @@ struct is_compiled_string : std::is_base_of<compiled_string, S> {};
*/
#define FMT_COMPILE(s) FMT_STRING_IMPL(s, fmt::detail::compiled_string)

#if defined(__cpp_nontype_template_parameter_class) && \
(!FMT_GCC_VERSION || FMT_GCC_VERSION >= 903)
template <typename Char, std::size_t N> struct fixed_string {
#ifdef FMT_USE_NONTYPE_TEMPLATE_PARAMETERS
template <typename Char, size_t N> struct fixed_string {
constexpr fixed_string(const Char (&str)[N + 1]) {
copy_str<Char, const Char*, Char*>(static_cast<const Char*>(str), str + N,
data);
}
Char data[N]{};
};

template <typename Char, std::size_t N>
template <typename Char, size_t N>
fixed_string(const Char (&str)[N]) -> fixed_string<Char, N - 1>;

template <typename Char, std::size_t N, fixed_string<Char, N> Str>
template <typename Char, size_t N, fixed_string<Char, N> Str>
struct udl_compiled_string : compiled_string {
using char_type = Char;
constexpr operator basic_string_view<char_type>() const {
Expand Down Expand Up @@ -720,8 +725,7 @@ size_t formatted_size(const CompiledFormat& cf, const Args&... args) {
return format_to(detail::counting_iterator(), cf, args...).count();
}

#if defined(__cpp_nontype_template_parameter_class) && \
(!FMT_GCC_VERSION || FMT_GCC_VERSION >= 903)
#ifdef FMT_USE_NONTYPE_TEMPLATE_PARAMETERS
inline namespace literals {
template <detail::fixed_string Str>
constexpr detail::udl_compiled_string<remove_cvref_t<decltype(Str.data[0])>,
Expand Down
3 changes: 1 addition & 2 deletions test/compile-test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,7 @@ TEST(CompileTest, Empty) {
}
#endif

#if defined(__cpp_nontype_template_parameter_class) && \
(!FMT_GCC_VERSION || FMT_GCC_VERSION >= 903)
#ifdef FMT_USE_NONTYPE_TEMPLATE_PARAMETERS
TEST(CompileTest, CompileFormatStringLiteral) {
using namespace fmt::literals;
EXPECT_EQ("42", fmt::format("{}"_cf, 42));
Expand Down

0 comments on commit 8c8b1cc

Please sign in to comment.