From 57274b3f09385b73f91b7338002b3a5f81454092 Mon Sep 17 00:00:00 2001 From: dehnert Date: Sat, 12 Jan 2013 21:42:32 +0100 Subject: [PATCH] Fixed missing newline and warning about nested comments. --- src/models/AbstractModel.h | 2 +- src/storage/SparseMatrix.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/models/AbstractModel.h b/src/models/AbstractModel.h index b3610ee09..bb223b718 100644 --- a/src/models/AbstractModel.h +++ b/src/models/AbstractModel.h @@ -61,4 +61,4 @@ class AbstractModel { } // namespace models } // namespace storm -#endif /* STORM_MODELS_ABSTRACTMODEL_H_ */ \ No newline at end of file +#endif /* STORM_MODELS_ABSTRACTMODEL_H_ */ diff --git a/src/storage/SparseMatrix.h b/src/storage/SparseMatrix.h index 6e4ca5066..3a84cf4ad 100644 --- a/src/storage/SparseMatrix.h +++ b/src/storage/SparseMatrix.h @@ -77,7 +77,7 @@ public: : rowCount(rows), colCount(cols), nonZeroEntryCount(0), internalStatus(MatrixStatus::UnInitialized), currentSize(0), lastRow(0) { } - /* Sadly, Delegate Constructors are not yet available with MSVC2012 + /* Sadly, Delegate Constructors are not yet available with MSVC2012 */ //! Constructor /*! * Constructs a square sparse matrix object with the given number rows