summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt2
-rw-r--r--lib/abstractpropertytype.h3
2 files changed, 4 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index b7f23335..16b798c9 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -6,7 +6,7 @@ set(CMAKE_BUILD_TYPE, Debug)
include(FindPkgConfig)
set(PROJECT_NAME "automotive-message-broker")
-set(PROJECT_VERSION "0.10.0")
+set(PROJECT_VERSION "0.10.1")
set(PROJECT_CODENAME "chevelle")
add_definitions(-DPROJECT_VERSION="${PROJECT_VERSION}")
diff --git a/lib/abstractpropertytype.h b/lib/abstractpropertytype.h
index b50aba5e..bfe1ea60 100644
--- a/lib/abstractpropertytype.h
+++ b/lib/abstractpropertytype.h
@@ -305,6 +305,9 @@ public:
return value<T>() > other.value<T>();
}
+ /** this is used for nameless property types. It should not be used for typical properties
+ * that should have a name
+ */
BasicPropertyType( T val)
:AbstractPropertyType("")
{