diff options
Diffstat (limited to 'orc-rt/lib/executor/ResourceManager.cpp')
-rw-r--r-- | orc-rt/lib/executor/ResourceManager.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/orc-rt/lib/executor/ResourceManager.cpp b/orc-rt/lib/executor/ResourceManager.cpp new file mode 100644 index 0000000..171def5 --- /dev/null +++ b/orc-rt/lib/executor/ResourceManager.cpp @@ -0,0 +1,19 @@ +//===- ResourceManager.cpp ------------------------------------------------===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// +// +// Contains the implementation of APIs in the orc-rt/ResourceManager.h header. +// +//===----------------------------------------------------------------------===// + +#include "orc-rt/ResourceManager.h" + +namespace orc_rt { + +ResourceManager::~ResourceManager() = default; + +} // namespace orc_rt |