1*950b70dcSNandor Licker //===--- Frame.cpp - Call frame for the VM and AST Walker -------*- C++ -*-===// 2*950b70dcSNandor Licker // 3*950b70dcSNandor Licker // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*950b70dcSNandor Licker // See https://llvm.org/LICENSE.txt for license information. 5*950b70dcSNandor Licker // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6*950b70dcSNandor Licker // 7*950b70dcSNandor Licker //===----------------------------------------------------------------------===// 8*950b70dcSNandor Licker 9*950b70dcSNandor Licker #include "Frame.h" 10*950b70dcSNandor Licker 11*950b70dcSNandor Licker using namespace clang; 12*950b70dcSNandor Licker using namespace clang::interp; 13*950b70dcSNandor Licker ~Frame()14*950b70dcSNandor LickerFrame::~Frame() {} 15