]> www.ginac.de Git - ginac.git/blobdiff - ginac/ptr.h
Fix a comment.
[ginac.git] / ginac / ptr.h
index b7736c7c322d8d4f478b5ac69401b682b6e7e5df..9d76bfeed3ee4ce79317c39a2783467a210d78f5 100644 (file)
@@ -61,7 +61,7 @@ template <class T> class ptr {
        // and makewritable() requires locking.
 
 public:
-    // no default ctor: a ptr is never unbound
+       // no default ctor: a ptr is never unbound
 
        /** Bind ptr to newly created object, start reference counting. */
        ptr(T *t) noexcept : p(t) { GINAC_ASSERT(p); p->set_refcount(1); }