Fixing #include error in linked_list.h

This commit is contained in:
Justin C. Miller
2018-09-16 12:20:14 -07:00
parent 8c2ff33c40
commit f4e7eaeb40

View File

@@ -1,6 +1,7 @@
#pragma once #pragma once
/// \file linked_list.h /// \file linked_list.h
/// A generic templatized linked list. /// A generic templatized linked list.
#include <stddef.h>
namespace kutil { namespace kutil {