X-Git-Url: https://git.donarmstrong.com/lilypond.git?a=blobdiff_plain;f=flower%2Finclude%2Fpointer.tcc;h=c35f92c4970bcdef9eda19c1af0ab27745ea4a45;hb=1a66290a98e7de8d6d41485b5b71a9f7e1fe35c7;hp=80cadfd23a72efc7c9445a2512b7f1e5f2a733d0;hpb=6cea332dd176e75dd6c2ab2d92505cadfdfcd99f;p=lilypond.git diff --git a/flower/include/pointer.tcc b/flower/include/pointer.tcc index 80cadfd23a..c35f92c497 100644 --- a/flower/include/pointer.tcc +++ b/flower/include/pointer.tcc @@ -21,7 +21,7 @@ P::copy_p()const template inline void -P::copy(T const *l_C) +P::copy (T const *l_C) { t_p = l_C ? new T(*l_C) : 0; } @@ -48,7 +48,7 @@ P & P::operator =(P const&s) { junk(); - copy(s.t_p); + copy (s.t_p); return *this; } @@ -61,7 +61,7 @@ P::~P() { template inline void -P::set_p(T * np) +P::set_p (T * np) { if (np == t_p) return; @@ -74,13 +74,13 @@ P::set_p(T * np) template inline void -P::set_l(T const * l_C) +P::set_l (T const * l_C) { if (t_p == l_C) return; junk(); - copy(l_C); + copy (l_C); }