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