Skip to content

Commit af91d39

Browse files
committedAug 16, 2024
[nxp noup][examples][common] Fix clang format
Signed-off-by: marius-alex-tache <marius.tache@nxp.com>
1 parent ed7f4e9 commit af91d39

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed
 

‎examples/platform/nxp/common/app_task/include/AppTaskBase.h

+7-7
Original file line numberDiff line numberDiff line change
@@ -51,23 +51,23 @@ class AppTaskBase
5151
* This function is called at the begging of the InitServer function.
5252
*
5353
*/
54-
virtual void PreInitMatterServerInstance(void){};
54+
virtual void PreInitMatterServerInstance(void) {};
5555

5656
/**
5757
* \brief This function could be overridden in order to execute code at the end of the InitServer function.
5858
*
5959
* Example of usage: all-cluster-apps example disable last fixed endpoint after InitServer function execution.
6060
*
6161
*/
62-
virtual void PostInitMatterServerInstance(void){};
62+
virtual void PostInitMatterServerInstance(void) {};
6363

6464
/**
6565
* \brief This function could be overridden in order to execute code before matter stack init function.
6666
*
6767
* Example of usage: if some initialization has to be done before the matter stack initialization.
6868
*
6969
*/
70-
virtual void PreInitMatterStack(void){};
70+
virtual void PreInitMatterStack(void) {};
7171

7272
/**
7373
* \brief This function could be overridden in order to execute code after matter stack init function.
@@ -76,7 +76,7 @@ class AppTaskBase
7676
* done after matter stack init. Developper can override this function to add cluster initialization/customization.
7777
*
7878
*/
79-
virtual void PostInitMatterStack(void){};
79+
virtual void PostInitMatterStack(void) {};
8080

8181
/**
8282
* \brief This function could be overridden in order to register features.
@@ -94,7 +94,7 @@ class AppTaskBase
9494
* Example of usage: Laundry washer application used additionnal CLI commands.
9595
*
9696
*/
97-
virtual void AppMatter_RegisterCustomCliCommands(void){};
97+
virtual void AppMatter_RegisterCustomCliCommands(void) {};
9898

9999
/**
100100
* \brief Disallow entering low power mode.
@@ -132,15 +132,15 @@ class AppTaskBase
132132
* \brief Send event to the event queue.
133133
*
134134
*/
135-
virtual void PostEvent(const AppEvent & event){};
135+
virtual void PostEvent(const AppEvent & event) {};
136136

137137
/**
138138
* \brief This function could be overridden in order to dispatch event.
139139
*
140140
* Example of usage: FreeRtos dispatch event using the event handler.
141141
*
142142
*/
143-
virtual void DispatchEvent(const AppEvent & event){};
143+
virtual void DispatchEvent(const AppEvent & event) {};
144144

145145
/**
146146
* \brief Return a pointer to the NXP Wifi Driver instance.

0 commit comments

Comments
 (0)