Inna Palant | ff3f07a | 2019-07-11 16:15:26 -0700 | [diff] [blame] | 1 | //===-- ModuleFileExtension.cpp - Module File Extensions ------------------===// |
| 2 | // |
Chih-Hung Hsieh | 0860053 | 2019-12-19 15:55:38 -0800 | [diff] [blame] | 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 |
Inna Palant | ff3f07a | 2019-07-11 16:15:26 -0700 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | #include "clang/Serialization/ModuleFileExtension.h" |
| 9 | #include "llvm/ADT/Hashing.h" |
| 10 | using namespace clang; |
| 11 | |
Chris Wailes | bcf972c | 2021-10-21 11:03:28 -0700 | [diff] [blame^] | 12 | char ModuleFileExtension::ID = 0; |
| 13 | |
Inna Palant | ff3f07a | 2019-07-11 16:15:26 -0700 | [diff] [blame] | 14 | ModuleFileExtension::~ModuleFileExtension() { } |
| 15 | |
| 16 | llvm::hash_code ModuleFileExtension::hashExtension(llvm::hash_code Code) const { |
| 17 | return Code; |
| 18 | } |
| 19 | |
| 20 | ModuleFileExtensionWriter::~ModuleFileExtensionWriter() { } |
| 21 | |
| 22 | ModuleFileExtensionReader::~ModuleFileExtensionReader() { } |