Skip to content

Commit

Permalink
Fix missing '>'
Browse files Browse the repository at this point in the history
  • Loading branch information
foonathan committed Nov 5, 2016
1 parent 6c01257 commit d8867a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fmt/format.h
Original file line number Diff line number Diff line change
Expand Up @@ -831,7 +831,7 @@ class CharTraits<char> : public BasicCharTraits<char> {
extern template int CharTraits<char>::format_float<double>
(char *buffer, std::size_t size,
const char* format, unsigned width, int precision, double value);
extern template int CharTraits<char>::format_float<long double
extern template int CharTraits<char>::format_float<long double>
(char *buffer, std::size_t size,
const char* format, unsigned width, int precision, long double value);
#endif
Expand Down

0 comments on commit d8867a2

Please sign in to comment.