mirror of
				https://github.com/fmtlib/fmt.git
				synced 2025-11-03 23:51:41 +01:00 
			
		
		
		
	Revert commit 3c3ae4e319
				
					
				
			This commit is contained in:
		@@ -66,8 +66,9 @@ std::basic_ostream<Char> &operator<<(std::basic_ostream<Char> &os, Test) {
 | 
			
		||||
 | 
			
		||||
template <typename Char, typename T>
 | 
			
		||||
Arg make_arg(const T &value) {
 | 
			
		||||
  Arg arg = fmt::internal::MakeArg<Char>(value);
 | 
			
		||||
  arg.type = static_cast<Arg::Type>(fmt::internal::MakeArg<Char>::type(value));
 | 
			
		||||
  Arg arg = fmt::internal::MakeValue<Char>(value);
 | 
			
		||||
  arg.type = static_cast<Arg::Type>(
 | 
			
		||||
        fmt::internal::MakeValue<Char>::type(value));
 | 
			
		||||
  return arg;
 | 
			
		||||
}
 | 
			
		||||
}  // namespace
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user