@@ -87,6 +87,8 @@ class EmbAJAXBase {
87
87
* @returns true if anything has been written, false otherwise.
88
88
*/
89
89
virtual bool sendUpdates (uint16_t since, bool first) {
90
+ UNUSED (since);
91
+ UNUSED (first);
90
92
return false ;
91
93
}
92
94
/* * Cast this object to EmbAJAXElement if it is a controllable element.
@@ -114,11 +116,12 @@ class EmbAJAXBase {
114
116
/* * Find child element of this one, with the given id. Returns 0, if this is not a container, or
115
117
* does not have such a child. @see EmbAJAXContainer, and @see EmbAJAXHideableContainer. */
116
118
virtual EmbAJAXElement* findChild (const char *id) const {
119
+ UNUSED (id);
117
120
return 0 ;
118
121
}
119
122
protected:
120
123
template <size_t NUM> friend class EmbAJAXContainer ;
121
- virtual void setBasicProperty (uint8_t num, bool status) {};
124
+ virtual void setBasicProperty (uint8_t num, bool status) { UNUSED (num); UNUSED (status); };
122
125
123
126
static EmbAJAXOutputDriverBase *_driver;
124
127
static char itoa_buf[8 ];
@@ -317,6 +320,7 @@ class EmbAJAXElement : public EmbAJAXBase {
317
320
/* * Returns true, if the value may contain HTML, and needs HTML escaping when passed to the client.
318
321
* Base implementation simply returns false. */
319
322
virtual bool valueNeedsEscaping (uint8_t which = EmbAJAXBase::Value) const {
323
+ UNUSED (which);
320
324
return false ;
321
325
}
322
326
@@ -332,6 +336,7 @@ class EmbAJAXElement : public EmbAJAXBase {
332
336
/* * override this in your derived class to allow updates to be propagated from client to server (if wanted).
333
337
* The implementation need not call setChanged(). */
334
338
virtual void updateFromDriverArg (const char * argname) {
339
+ UNUSED (argname);
335
340
return ;
336
341
}
337
342
0 commit comments