diff options
Diffstat (limited to 'lib/CodeGen/PBQP/PBQPMath.h')
-rw-r--r-- | lib/CodeGen/PBQP/PBQPMath.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/CodeGen/PBQP/PBQPMath.h b/lib/CodeGen/PBQP/PBQPMath.h index 9bcaf4d..11f4b4b 100644 --- a/lib/CodeGen/PBQP/PBQPMath.h +++ b/lib/CodeGen/PBQP/PBQPMath.h @@ -52,7 +52,7 @@ class Vector { } /// \brief Return the length of the vector - unsigned getLength() const throw () { + unsigned getLength() const { return length; } @@ -143,10 +143,10 @@ class Matrix { } /// \brief Return the number of rows in this matrix. - unsigned getRows() const throw () { return rows; } + unsigned getRows() const { return rows; } /// \brief Return the number of cols in this matrix. - unsigned getCols() const throw () { return cols; } + unsigned getCols() const { return cols; } /// \brief Matrix element access. PBQPNum* operator[](unsigned r) { |