Commit d7d2bebf authored by Victor Zverovich's avatar Victor Zverovich

Remove redundant typename

parent 9427f15b
...@@ -1138,10 +1138,9 @@ template <typename Context> class basic_format_args { ...@@ -1138,10 +1138,9 @@ template <typename Context> class basic_format_args {
bool is_packed() const { return (types_ & internal::is_unpacked_bit) == 0; } bool is_packed() const { return (types_ & internal::is_unpacked_bit) == 0; }
typename internal::type type(unsigned index) const { internal::type type(unsigned index) const {
unsigned shift = index * 4; unsigned shift = index * 4;
return static_cast<typename internal::type>((types_ & (0xfull << shift)) >> return static_cast<internal::type>((types_ & (0xfull << shift)) >> shift);
shift);
} }
friend class internal::arg_map<Context>; friend class internal::arg_map<Context>;
......
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