summaryrefslogtreecommitdiffstats
path: root/src/libnr/nr-object.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libnr/nr-object.h')
-rw-r--r--src/libnr/nr-object.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libnr/nr-object.h b/src/libnr/nr-object.h
index f39814b0d..269130284 100644
--- a/src/libnr/nr-object.h
+++ b/src/libnr/nr-object.h
@@ -91,7 +91,7 @@ private:
NRObject(NRObject const &); // no copy
void operator=(NRObject const &); // no assign
- void *operator new(size_t size, void *placement) { return placement; }
+ void *operator new(size_t size, void *placement) { (void)size; return placement; }
};
struct NRObjectClass {