Browse Source

Fixed missing newline and warning about nested comments.

main
dehnert 13 years ago
parent
commit
57274b3f09
  1. 2
      src/models/AbstractModel.h
  2. 2
      src/storage/SparseMatrix.h

2
src/models/AbstractModel.h

@ -61,4 +61,4 @@ class AbstractModel {
} // namespace models } // namespace models
} // namespace storm } // namespace storm
#endif /* STORM_MODELS_ABSTRACTMODEL_H_ */ #endif /* STORM_MODELS_ABSTRACTMODEL_H_ */

2
src/storage/SparseMatrix.h

@ -77,7 +77,7 @@ public:
: rowCount(rows), colCount(cols), nonZeroEntryCount(0), : rowCount(rows), colCount(cols), nonZeroEntryCount(0),
internalStatus(MatrixStatus::UnInitialized), currentSize(0), lastRow(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 //! Constructor
/*! /*!
* Constructs a square sparse matrix object with the given number rows * Constructs a square sparse matrix object with the given number rows

|||||||
100:0
Loading…
Cancel
Save