From: David Wells <wellsd2@rpi.edu>
Date: Thu, 5 Oct 2017 20:26:00 +0000 (-0400)
Subject: Update some comments for ConstraintMatrixData.
X-Git-Tag: v9.0.0-rc1~990^2~3
X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=505511860ff2f4b42f7212e6e4c09e9e652359cd;p=dealii.git

Update some comments for ConstraintMatrixData.

We no longer use shared pointers here.
---

diff --git a/include/deal.II/lac/constraint_matrix.templates.h b/include/deal.II/lac/constraint_matrix.templates.h
index 469d7a4bfa..219f2e5cb7 100644
--- a/include/deal.II/lac/constraint_matrix.templates.h
+++ b/include/deal.II/lac/constraint_matrix.templates.h
@@ -1442,14 +1442,12 @@ namespace internals
       std::vector<Number> vector_values;
 
       /**
-       * Data array for reorder row/column indices. Use a shared ptr to
-       * global_rows to avoid defining in the .h file
+       * Data array for reorder row/column indices.
        */
       GlobalRowsFromLocal global_rows;
 
       /**
-       * Data array for reorder row/column indices. Use a shared ptr to
-       * global_rows to avoid defining in the .h file
+       * Data array for reorder row/column indices.
        */
       GlobalRowsFromLocal global_columns;
     };