astyle
This commit is contained in:
		@@ -112,7 +112,8 @@ int main(int, char*[])
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// Example of user defined class with operator<<
 | 
					// Example of user defined class with operator<<
 | 
				
			||||||
class some_class {};
 | 
					class some_class {};
 | 
				
			||||||
std::ostream& operator<<(std::ostream& os, const some_class&) {
 | 
					std::ostream& operator<<(std::ostream& os, const some_class&)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
    return os << "some_class";
 | 
					    return os << "some_class";
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -64,11 +64,11 @@ class async_log_helper
 | 
				
			|||||||
        async_msg() = default;
 | 
					        async_msg() = default;
 | 
				
			||||||
        ~async_msg() = default;
 | 
					        ~async_msg() = default;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        async_msg(async_msg&& other) SPDLOG_NOEXCEPT:
 | 
					async_msg(async_msg&& other) SPDLOG_NOEXCEPT:
 | 
				
			||||||
            logger_name(std::move(other.logger_name)),
 | 
					        logger_name(std::move(other.logger_name)),
 | 
				
			||||||
            level(std::move(other.level)),
 | 
					                    level(std::move(other.level)),
 | 
				
			||||||
            time(std::move(other.time)),
 | 
					                    time(std::move(other.time)),
 | 
				
			||||||
            txt(std::move(other.txt))
 | 
					                    txt(std::move(other.txt))
 | 
				
			||||||
        {}
 | 
					        {}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        async_msg& operator=(async_msg&& other) SPDLOG_NOEXCEPT
 | 
					        async_msg& operator=(async_msg&& other) SPDLOG_NOEXCEPT
 | 
				
			||||||
 
 | 
				
			|||||||
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							@@ -478,7 +478,7 @@ inline void spdlog::pattern_formatter::handle_flag(char flag)
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
    switch (flag)
 | 
					    switch (flag)
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
    // logger name
 | 
					        // logger name
 | 
				
			||||||
    case 'n':
 | 
					    case 'n':
 | 
				
			||||||
        _formatters.push_back(std::unique_ptr<details::flag_formatter>(new details::name_formatter()));
 | 
					        _formatters.push_back(std::unique_ptr<details::flag_formatter>(new details::name_formatter()));
 | 
				
			||||||
        break;
 | 
					        break;
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user