mirror of
				https://github.com/NoelFB/blah.git
				synced 2025-11-04 01:41:34 +08:00 
			
		
		
		
	fixed missing std::forward to Path::join
This commit is contained in:
		@ -42,7 +42,7 @@ namespace Blah
 | 
				
			|||||||
		template<typename ... Args>
 | 
							template<typename ... Args>
 | 
				
			||||||
		FilePath join(const FilePath& a, const FilePath& b, const Args&... args)
 | 
							FilePath join(const FilePath& a, const FilePath& b, const Args&... args)
 | 
				
			||||||
		{
 | 
							{
 | 
				
			||||||
			return join(a, join(b, args...));
 | 
								return join(a, join(b, std::forward<Args>(args)...));
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
		Reference in New Issue
	
	Block a user