]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/pointer.hh
release: 0.1.8
[lilypond.git] / flower / include / pointer.hh
index 58f8e198b0537e4aae014ed1314972dee3723bbe..cc8097c3600da122acc9d0352741cf13a35e4416 100644 (file)
@@ -23,7 +23,7 @@ class P {
     /**
       Set contents to a copy of #t_l#
      */
-    void copy(T const*t_l);
+    void copy (T const*t_l);
     T* t_p;
 
     /**
@@ -63,7 +63,7 @@ public:
     //P(T *p) { t_p = p; }
     
     T *operator ->() { return t_p; }
-    operator T * () {  return t_p; }
+    operator T *() {  return t_p; }
     const T *operator ->() const { return t_p ; }
     T &operator *() { return *t_p; }
     T const  &operator *() const { return *t_p; }