COM.inc 1022 B

1234567891011121314151617181920212223242526
  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. //=== WARNING: Implementation here must contain only generic UNIX code that
  14. //=== is guaranteed to work on *all* UNIX variants.
  15. //===----------------------------------------------------------------------===//
  16. namespace llvm {
  17. namespace sys {
  18. InitializeCOMRAII::InitializeCOMRAII(COMThreadingMode Threading,
  19. bool SpeedOverMemory) {}
  20. InitializeCOMRAII::~InitializeCOMRAII() {}
  21. }
  22. }