File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -170,12 +170,14 @@ struct qConfigType {
170170 settings.max = maxval.v ;
171171 }
172172 static inline void qProcessSetting (qConfigSettings<T>& settings, qmessage_t msg) { settings.message = msg.v ; }
173- static inline void qProcessSetting (qConfigSettings<T>& settings, qset_t <T> set)
173+ template <typename S>
174+ static inline void qProcessSetting (qConfigSettings<T>& settings, qset_t <S> set)
174175 {
175176 settings.doSet = true ;
176177 settings.set = set.v ;
177178 }
178- static inline void qProcessSetting (qConfigSettings<T>& settings, qdef_t <T> set)
179+ template <typename S>
180+ static inline void qProcessSetting (qConfigSettings<T>& settings, qdef_t <S> set)
179181 {
180182 settings.doDefault = true ;
181183 settings.set = set.v ;
You can’t perform that action at this time.
0 commit comments