summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiam P. White <inkscapebrony@gmail.com>2014-10-17 19:40:53 +0000
committerLiam P. White <inkscapebrony@gmail.com>2014-10-17 19:40:53 +0000
commit4f98972d426507aaceb1c55d5fdee5b258999445 (patch)
tree6d62ed666c408b1a04ef7d63caa8f98a2543263b
parentFix previous revision. (diff)
downloadinkscape-4f98972d426507aaceb1c55d5fdee5b258999445.tar.gz
inkscape-4f98972d426507aaceb1c55d5fdee5b258999445.zip
Small warning cleanup
(bzr r13341.1.277)
-rw-r--r--src/2geom/numeric/symmetric-matrix-fs-operation.h2
-rw-r--r--src/2geom/numeric/symmetric-matrix-fs-trace.h2
-rw-r--r--src/style-internal.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/2geom/numeric/symmetric-matrix-fs-operation.h b/src/2geom/numeric/symmetric-matrix-fs-operation.h
index 5222d2734..37ece56ae 100644
--- a/src/2geom/numeric/symmetric-matrix-fs-operation.h
+++ b/src/2geom/numeric/symmetric-matrix-fs-operation.h
@@ -44,7 +44,7 @@ namespace Geom { namespace NL {
template <size_t N>
inline
-SymmetricMatrix<N> adj(const ConstBaseSymmetricMatrix<N> & S)
+SymmetricMatrix<N> adj(const ConstBaseSymmetricMatrix<N> & /*S*/)
{
THROW_NOTIMPLEMENTED();
return SymmetricMatrix<N>();
diff --git a/src/2geom/numeric/symmetric-matrix-fs-trace.h b/src/2geom/numeric/symmetric-matrix-fs-trace.h
index 099c834a8..dbabecf6e 100644
--- a/src/2geom/numeric/symmetric-matrix-fs-trace.h
+++ b/src/2geom/numeric/symmetric-matrix-fs-trace.h
@@ -74,7 +74,7 @@ template <size_t K, size_t N>
struct trace
{
static
- double evaluate (const ConstBaseSymmetricMatrix<N> & S)
+ double evaluate (const ConstBaseSymmetricMatrix<N> & /*S*/)
{
THROW_NOTIMPLEMENTED();
return K;
diff --git a/src/style-internal.h b/src/style-internal.h
index 9158ed60e..5a853fcef 100644
--- a/src/style-internal.h
+++ b/src/style-internal.h
@@ -387,7 +387,7 @@ class SPIString : public SPIBase {
public:
SPIString() :
SPIBase( "anonymous_string" ), value(NULL) {};
- SPIString( Glib::ustring name, gchar* value_default_in = NULL ) :
+ SPIString( Glib::ustring name, gchar const* value_default_in = NULL ) :
SPIBase( name ) , value(NULL) , value_default(NULL) {
value_default = value_default_in?g_strdup(value_default_in):NULL;
};