Victor Zverovich da439f2838 Suppress warning about missing noreturn attribute (#549)
Suppress warning about missing noreturn attribute

Adding `[[noreturn]]` to `report_unknown_type` suppresses the Clang/GCC `-Wmissing-noreturn` warning:

Clang outputs:

    .../fmt/fmt/format.cc:294:74: warning:
          function 'report_unknown_type' could be declared with
          attribute 'noreturn' [-Wmissing-noreturn]
      ...code, const char *type) {
                                 ^

GCC outputs:

    .../fmt/fmt/format.cc:294:74: warning: function might be candidate for
        attribute 'noreturn' [-Wsuggest-attribute=noreturn]
      ...code, const char *type) {
                                 ^

Cherry-picked d16c4d.
2017-07-23 20:21:11 -07:00
..
CMakeLists.txt Move printf-related code to printf.cc 2017-07-15 09:46:18 -04:00
format.cc Switch from cstring_view to string_view 2017-07-22 08:24:37 -07:00
format.h Suppress warning about missing noreturn attribute (#549) 2017-07-23 20:21:11 -07:00
ostream.cc Switch from cstring_view to string_view 2017-07-22 08:24:37 -07:00
ostream.h Switch from cstring_view to string_view 2017-07-22 08:24:37 -07:00
posix.cc Switch from cstring_view to string_view 2017-07-22 08:24:37 -07:00
posix.h Switch from cstring_view to string_view 2017-07-22 08:24:37 -07:00
printf.cc Switch from cstring_view to string_view 2017-07-22 08:24:37 -07:00
printf.h Switch from cstring_view to string_view 2017-07-22 08:24:37 -07:00
string.h Clean the buffer API (#477) 2017-03-12 09:48:21 -07:00
time.h Switch from cstring_view to string_view 2017-07-22 08:24:37 -07:00