blob: 03a690ac37667be8bff62d5b90537608cdea14f8 [file] [log] [blame]
Zachary Turnerc2055702015-04-27 17:19:26 +00001//===- llvm/Support/Unix/COM.inc - Unix COM Implementation -----*- C++ -*-===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Zachary Turnerc2055702015-04-27 17:19:26 +00006//
7//===----------------------------------------------------------------------===//
8//
9// This file implements the Unix portion of COM support.
10//
11//===----------------------------------------------------------------------===//
12
13//===----------------------------------------------------------------------===//
14//=== WARNING: Implementation here must contain only generic UNIX code that
15//=== is guaranteed to work on *all* UNIX variants.
16//===----------------------------------------------------------------------===//
17
18namespace llvm {
19namespace sys {
20
Zachary Turnere6295302015-04-27 17:22:30 +000021InitializeCOMRAII::InitializeCOMRAII(COMThreadingMode Threading,
22 bool SpeedOverMemory) {}
Zachary Turnerc2055702015-04-27 17:19:26 +000023
Zachary Turnere6295302015-04-27 17:22:30 +000024InitializeCOMRAII::~InitializeCOMRAII() {}
Zachary Turnerc2055702015-04-27 17:19:26 +000025}
26}