Commit d8867a2b authored by Jonathan Müller's avatar Jonathan Müller

Fix missing '>'

parent 6c012578
...@@ -831,7 +831,7 @@ class CharTraits<char> : public BasicCharTraits<char> { ...@@ -831,7 +831,7 @@ class CharTraits<char> : public BasicCharTraits<char> {
extern template int CharTraits<char>::format_float<double> extern template int CharTraits<char>::format_float<double>
(char *buffer, std::size_t size, (char *buffer, std::size_t size,
const char* format, unsigned width, int precision, double value); 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, (char *buffer, std::size_t size,
const char* format, unsigned width, int precision, long double value); const char* format, unsigned width, int precision, long double value);
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment