forked from OSchip/llvm-project
22 lines
703 B
C++
22 lines
703 B
C++
//===-- PackedKernelArgumentArray.cpp - Packed argument array impl --------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
///
|
|
/// \file
|
|
/// Implementation details for classes from PackedKernelArgumentArray.h.
|
|
///
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "streamexecutor/PackedKernelArgumentArray.h"
|
|
|
|
namespace streamexecutor {
|
|
|
|
PackedKernelArgumentArrayBase::~PackedKernelArgumentArrayBase() = default;
|
|
|
|
} // namespace streamexecutor
|