[Pkg-electronics-commits] [gnucap] 01/43: dont use USE in m_matrix.h
felix salfelder
felix-guest at moszumanska.debian.org
Wed Oct 4 03:21:43 UTC 2017
This is an automated email from the git hooks/post-receive script.
felix-guest pushed a commit to branch master
in repository gnucap.
commit 12971c3bc3a0de634a025132d647fc9be81d44b4
Author: Felix Salfelder <felix at salfelder.org>
Date: Sat Sep 24 21:34:14 2016 +0100
dont use USE in m_matrix.h
---
include/m_matrix.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/m_matrix.h b/include/m_matrix.h
index 424fd26..fa7cfcc 100644
--- a/include/m_matrix.h
+++ b/include/m_matrix.h
@@ -394,7 +394,7 @@ double BSMATRIX<T>::density()
template <class T>
T BSMATRIX<T>::d(int r, int c) const
{
- USE(c);
+ (void)c;
assert(_diaptr);
assert(r == c);
assert(0 <= r);
@@ -407,7 +407,7 @@ T BSMATRIX<T>::d(int r, int c) const
template <class T>
T& BSMATRIX<T>::d(int r, int c)
{
- USE(c);
+ (void)c;
assert(_diaptr);
assert(r == c);
assert(0 <= r);
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-electronics/gnucap.git
More information about the Pkg-electronics-commits
mailing list