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
+1 -1
View File
@@ -47,7 +47,7 @@ Throwable::Throwable(const char *m, int e, bool w)
}
Throwable::Throwable(Throwable const &other)
Throwable::Throwable(const Throwable &other)
: super(other), msg(NULL), err(other.err), is_warning(other.is_warning)
{
if (other.msg)