[lldb] Add missing include to Cloneable.h

This header is using make_shared so it needs to include <memory>.
This commit is contained in:
Raphael Isemann 2021-03-02 11:00:22 +01:00
parent a63daf693c
commit 1432ab171f
1 changed files with 1 additions and 0 deletions

View File

@ -9,6 +9,7 @@
#ifndef LLDB_UTILITY_CLONEABLE_H
#define LLDB_UTILITY_CLONEABLE_H
#include <memory>
#include <type_traits>
namespace lldb_private {