Skip to content

Commit

Permalink
[1D] made Domain1D::grid(size_t) a const member function
Browse files Browse the repository at this point in the history
  • Loading branch information
g3bk47 authored and speth committed Oct 15, 2016
1 parent e83b095 commit 8398982
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/cantera/oneD/Domain1D.h
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ class Domain1D
const vector_fp& grid() const {
return m_z;
}
doublereal grid(size_t point) {
doublereal grid(size_t point) const {
return m_z[point];
}

Expand Down

0 comments on commit 8398982

Please sign in to comment.