1//===- llvm/Support/Unix/COM.inc - Unix COM Implementation -----*- C++ -*-===//
2//
3// 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
6//
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
21InitializeCOMRAII::InitializeCOMRAII(COMThreadingMode Threading,
22 bool SpeedOverMemory) {}
23
24InitializeCOMRAII::~InitializeCOMRAII() = default;
25} // namespace sys
26} // namespace llvm
27

source code of llvm/lib/Support/Unix/COM.inc