Consistently use const Class &' instead of Class const &'.

committer: mfx <mfx> 1042741665 +0000
This commit is contained in:
Markus F.X.J. Oberhumer
2003-01-16 18:27:45 +00:00
parent 7860e7a249
commit 8f25c72085
8 changed files with 15 additions and 15 deletions
+2 -2
View File
@@ -219,8 +219,8 @@ protected:
private:
// disable copy and assignment
LeFile(LeFile const &); // {}
LeFile& operator= (LeFile const &); // { return *this; }
LeFile(const LeFile &); // {}
LeFile& operator= (const LeFile &); // { return *this; }
};