Files
clang-p2996/parallel-libs/streamexecutor/lib/PlatformInterfaces.cpp
Jason Henline a91dc70b18 [StreamExecutor] Rename StreamExecutor to Executor
Summary: No functional changes just renaming this class for better readability.

Reviewers: jlebar

Subscribers: jprice, parallel_libs-commits

Differential Revision: https://reviews.llvm.org/D23574

llvm-svn: 278833
2016-08-16 18:18:32 +00:00

24 lines
705 B
C++

//===-- PlatformInterfaces.cpp - Platform interface implementations -------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
///
/// \file
/// Implementation file for PlatformInterfaces.h.
///
//===----------------------------------------------------------------------===//
#include "streamexecutor/PlatformInterfaces.h"
namespace streamexecutor {
PlatformStreamHandle::~PlatformStreamHandle() = default;
PlatformExecutor::~PlatformExecutor() = default;
} // namespace streamexecutor