diff --git a/include/blt/std/memory.h b/include/blt/std/memory.h index bf1ee68..5eaf4bb 100755 --- a/include/blt/std/memory.h +++ b/include/blt/std/memory.h @@ -87,6 +87,12 @@ namespace blt return 0; } + + template + inline static int fromBytes(const BYTE_TYPE* in, T* out) + { + return fromBytes(in, *out); + } } template