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
26 lines
790 B
C++
26 lines
790 B
C++
//===-- Stream.cpp - General stream implementation ------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
///
|
|
/// \file
|
|
/// This file contains the implementation details for a general stream object.
|
|
///
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "streamexecutor/Stream.h"
|
|
|
|
namespace streamexecutor {
|
|
|
|
Stream::Stream(std::unique_ptr<PlatformStreamHandle> PStream)
|
|
: PExecutor(PStream->getExecutor()), ThePlatformStream(std::move(PStream)) {
|
|
}
|
|
|
|
Stream::~Stream() = default;
|
|
|
|
} // namespace streamexecutor
|