Browse Source

Fixed missing newline and warning about nested comments.

tempestpy_adaptions
dehnert 12 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 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),
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

Loading…
Cancel
Save