COM.inc 994 B

123456789101112131415161718192021222324252627
  1. //===- llvm/Support/Unix/COM.inc - Unix COM Implementation -----*- C++ -*-===//
  2. //
  3. // The LLVM Compiler Infrastructure
  4. //
  5. // This file is distributed under the University of Illinois Open Source
  6. // License. See LICENSE.TXT for details.
  7. //
  8. //===----------------------------------------------------------------------===//
  9. //
  10. // This file implements the Unix portion of COM support.
  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. namespace llvm {
  18. namespace sys {
  19. InitializeCOMRAII::InitializeCOMRAII(COMThreadingMode Threading,
  20. bool SpeedOverMemory) {}
  21. InitializeCOMRAII::~InitializeCOMRAII() {}
  22. }
  23. }