@@ -109,33 +109,33 @@ class Task {
109109 // / @brief Validates input data and task attributes before execution.
110110 // / @return True if validation is successful.
111111 virtual bool Validation () final {
112- InternalOrderTest (__builtin_FUNCTION () );
112+ InternalOrderTest (PPC_FUNC_NAME );
113113 return ValidationImpl ();
114114 }
115115
116116 // / @brief Performs preprocessing on the input data.
117117 // / @return True if preprocessing is successful.
118118 virtual bool PreProcessing () final {
119- InternalOrderTest (__builtin_FUNCTION () );
119+ InternalOrderTest (PPC_FUNC_NAME );
120120 if (state_of_testing_ == StateOfTesting::kFunc ) {
121- InternalTimeTest (__builtin_FUNCTION () );
121+ InternalTimeTest (PPC_FUNC_NAME );
122122 }
123123 return PreProcessingImpl ();
124124 }
125125
126126 // / @brief Executes the main logic of the task.
127127 // / @return True if execution is successful.
128128 virtual bool Run () final {
129- InternalOrderTest (__builtin_FUNCTION () );
129+ InternalOrderTest (PPC_FUNC_NAME );
130130 return RunImpl ();
131131 }
132132
133133 // / @brief Performs postprocessing on the output data.
134134 // / @return True if postprocessing is successful.
135135 virtual bool PostProcessing () final {
136- InternalOrderTest (__builtin_FUNCTION () );
136+ InternalOrderTest (PPC_FUNC_NAME );
137137 if (state_of_testing_ == StateOfTesting::kFunc ) {
138- InternalTimeTest (__builtin_FUNCTION () );
138+ InternalTimeTest (PPC_FUNC_NAME );
139139 }
140140 return PostProcessingImpl ();
141141 }
0 commit comments