diff --git a/CMakeLists.txt b/CMakeLists.txt index 3c0ac93..657e573 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.11) # Project -project(yagi LANGUAGES CXX VERSION 1.0.0) +project(yagi LANGUAGES CXX VERSION 1.0.1) # Opions option(BUILD_TESTS "Build test programs" OFF) diff --git a/yagi/src/typemanager.cc b/yagi/src/typemanager.cc index bb1e0cd..98eba73 100644 --- a/yagi/src/typemanager.cc +++ b/yagi/src/typemanager.cc @@ -16,13 +16,6 @@ namespace yagi /**********************************************************************/ Datatype* TypeManager::findById(const string& n, uint8 id) { - // find in cache - auto result = TypeFactory::findById(n, id); - if (result != nullptr) - { - return result; - } - auto type = m_archi->getTypeInfoFactory().build(n); if (!type.has_value())