summaryrefslogtreecommitdiff
path: root/src/components/qt_hmi/qml_plugins/dbus_adapter/metatype.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/qt_hmi/qml_plugins/dbus_adapter/metatype.h')
-rw-r--r--src/components/qt_hmi/qml_plugins/dbus_adapter/metatype.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/components/qt_hmi/qml_plugins/dbus_adapter/metatype.h b/src/components/qt_hmi/qml_plugins/dbus_adapter/metatype.h
index 5224da7f55..b127cea1a8 100644
--- a/src/components/qt_hmi/qml_plugins/dbus_adapter/metatype.h
+++ b/src/components/qt_hmi/qml_plugins/dbus_adapter/metatype.h
@@ -35,25 +35,25 @@
#include <QMetaType>
-template<typename T>
+template <typename T>
QMetaType::Type metatype();
-template<>
+template <>
inline QMetaType::Type metatype<int>() {
return QMetaType::Int;
}
-template<>
+template <>
inline QMetaType::Type metatype<QString>() {
return QMetaType::QString;
}
-template<>
+template <>
inline QMetaType::Type metatype<bool>() {
return QMetaType::Bool;
}
-template<>
+template <>
inline QMetaType::Type metatype<double>() {
return QMetaType::Double;
}