mirror of
https://github.com/catchorg/Catch2.git
synced 2025-09-19 11:25:38 +02:00
Changed "const X ref"s to "X const ref"s
- Brought older code up to current convention (with the help of a Python script)
This commit is contained in:
@@ -57,7 +57,7 @@ namespace Catch {
|
||||
|
||||
struct OutputDebugWriter {
|
||||
|
||||
void operator()( const std::string &str ) {
|
||||
void operator()( std::string const&str ) {
|
||||
writeToDebugConsole( str );
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user