NativeList default constructor

This commit is contained in:
Dr. Chat
2015-12-06 15:25:11 -06:00
committed by Ben Vanik
parent 23b6a1f943
commit b3ed0fa445
2 changed files with 4 additions and 1 deletions

View File

@@ -13,6 +13,8 @@ namespace xe {
namespace kernel {
namespace util {
NativeList::NativeList() = default;
NativeList::NativeList(Memory* memory)
: memory_(memory), head_(kInvalidPointer) {}