mirror of
				https://github.com/fmtlib/fmt.git
				synced 2025-10-31 06:01:41 +01:00 
			
		
		
		
	Remove uses of buffer_range
This commit is contained in:
		| @@ -1806,10 +1806,10 @@ TEST(FormatTest, StrongEnum) { | ||||
| } | ||||
| #endif | ||||
|  | ||||
| using buffer_range = fmt::buffer_range<char>; | ||||
| using buffer_iterator = fmt::format_context::iterator; | ||||
|  | ||||
| class mock_arg_formatter | ||||
|     : public fmt::detail::arg_formatter_base<buffer_range::iterator, char> { | ||||
|     : public fmt::detail::arg_formatter_base<buffer_iterator, char> { | ||||
|  private: | ||||
| #if FMT_USE_INT128 | ||||
|   MOCK_METHOD1(call, void(__int128_t value)); | ||||
| @@ -1818,8 +1818,7 @@ class mock_arg_formatter | ||||
| #endif | ||||
|  | ||||
|  public: | ||||
|   typedef fmt::detail::arg_formatter_base<buffer_range::iterator, char> base; | ||||
|   typedef buffer_range range; | ||||
|   using base = fmt::detail::arg_formatter_base<buffer_iterator, char>; | ||||
|  | ||||
|   mock_arg_formatter(fmt::format_context& ctx, fmt::format_parse_context*, | ||||
|                      fmt::format_specs* s = nullptr) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user