Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ArxTypeTraits/functional.h
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ namespace arx { namespace stdx {
function(const Func& f)
: table(vtable_t::template get<dF>())
{
data = reinterpret_cast<void*>(new Func(f));
data = reinterpret_cast<void*>(new dF(f));
}
function(const function& o)
: table(o.table)
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"url": "https://github.com/hideakitai",
"maintainer": true
},
"version": "0.3.1",
"version": "0.3.2",
"license": "MIT",
"frameworks": "arduino",
"platforms": "*"
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=ArxTypeTraits
version=0.3.1
version=0.3.2
author=hideakitai
maintainer=hideakitai
sentence=C++ type_traits for Arduino which cannot use it as default
Expand Down
Loading