mirror of
https://github.com/catchorg/Catch2.git
synced 2025-09-16 10:05:39 +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:
@@ -67,8 +67,8 @@ struct AutoReg {
|
||||
~AutoReg();
|
||||
|
||||
private:
|
||||
AutoReg( const AutoReg& );
|
||||
void operator= ( const AutoReg& );
|
||||
AutoReg( AutoReg const& );
|
||||
void operator= ( AutoReg const& );
|
||||
};
|
||||
|
||||
} // end namespace Catch
|
||||
|
Reference in New Issue
Block a user