Skip to content

Commit a81eaef

Browse files
committed
Clean up unused parameter warnings
1 parent 684f468 commit a81eaef

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

EmbAJAX.h

+6-1
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,8 @@ class EmbAJAXBase {
8787
* @returns true if anything has been written, false otherwise.
8888
*/
8989
virtual bool sendUpdates(uint16_t since, bool first) {
90+
UNUSED(since);
91+
UNUSED(first);
9092
return false;
9193
}
9294
/** Cast this object to EmbAJAXElement if it is a controllable element.
@@ -114,11 +116,12 @@ class EmbAJAXBase {
114116
/** Find child element of this one, with the given id. Returns 0, if this is not a container, or
115117
* does not have such a child. @see EmbAJAXContainer, and @see EmbAJAXHideableContainer. */
116118
virtual EmbAJAXElement* findChild(const char*id) const {
119+
UNUSED(id);
117120
return 0;
118121
}
119122
protected:
120123
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); };
122125

123126
static EmbAJAXOutputDriverBase *_driver;
124127
static char itoa_buf[8];
@@ -317,6 +320,7 @@ class EmbAJAXElement : public EmbAJAXBase {
317320
/** Returns true, if the value may contain HTML, and needs HTML escaping when passed to the client.
318321
* Base implementation simply returns false. */
319322
virtual bool valueNeedsEscaping(uint8_t which = EmbAJAXBase::Value) const {
323+
UNUSED(which);
320324
return false;
321325
}
322326

@@ -332,6 +336,7 @@ class EmbAJAXElement : public EmbAJAXBase {
332336
/** override this in your derived class to allow updates to be propagated from client to server (if wanted).
333337
* The implementation need not call setChanged(). */
334338
virtual void updateFromDriverArg(const char* argname) {
339+
UNUSED(argname);
335340
return;
336341
}
337342

docs/ChangeLog.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
-- Changes in version 0.2.0 -- UNRELEASED
1+
-- Changes in version 0.3.0 -- UNRELEASED
2+
X TODO: Fix EmbAJAXValidatingTextInput (did it ever work?)
3+
4+
-- Changes in version 0.2.0 -- 2023-04-29
25
* On Harvard-architecture MCUs, keep most static strings in flash memory, only. This can achieve
36
massive RAM savings on some MCUs (none one others), at the cost of small performance hit
47
(behavior can be customized using the USE_PROGMEM_STRINGS #define).
@@ -10,7 +13,5 @@
1013
The former is obsolete by the global limit, the latter had never been implemented.
1114
* EmbAJAXTextInputs are more responsive, and no longer prone to "swallowing" key presses.
1215
* Add demo on keeping track of active clients
13-
X TODO: Fix EmbAJAXValidatingTextInput (did it ever work?)
14-
X TODO: Rework hasActiveClient, again?
1516

1617
-- Changes before version 0.1.1 have not been recorded --

macro_definitions.h

+4
Original file line numberDiff line numberDiff line change
@@ -120,3 +120,7 @@
120120
#else
121121
#define printF_proxy(X, ...) _printContentF(X, __VA_ARGS__);
122122
#endif
123+
124+
#ifndef UNUSED
125+
#define UNUSED(X) (void)(sizeof(X))
126+
#endif

0 commit comments

Comments
 (0)