//===-- 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