]> www.ginac.de Git - ginac.git/blobdiff - ginac/ptr.h
Prepare for release 1.7.3.
[ginac.git] / ginac / ptr.h
index b7736c7c322d8d4f478b5ac69401b682b6e7e5df..cc0e3332826c1f67d16e90640f36fe1ffa8853ac 100644 (file)
@@ -3,7 +3,7 @@
  *  Reference-counted pointer template. */
 
 /*
- *  GiNaC Copyright (C) 1999-2016 Johannes Gutenberg University Mainz, Germany
+ *  GiNaC Copyright (C) 1999-2018 Johannes Gutenberg University Mainz, Germany
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -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); }