blob: 6b7fd1d543409fcb87c88441c6a68d91e3c9d2da [file] [log] [blame]
Inna Palantff3f07a2019-07-11 16:15:26 -07001//===-- ModuleFileExtension.cpp - Module File Extensions ------------------===//
2//
Chih-Hung Hsieh08600532019-12-19 15:55:38 -08003// 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 Palantff3f07a2019-07-11 16:15:26 -07006//
7//===----------------------------------------------------------------------===//
8#include "clang/Serialization/ModuleFileExtension.h"
9#include "llvm/ADT/Hashing.h"
10using namespace clang;
11
Chris Wailesbcf972c2021-10-21 11:03:28 -070012char ModuleFileExtension::ID = 0;
13
Inna Palantff3f07a2019-07-11 16:15:26 -070014ModuleFileExtension::~ModuleFileExtension() { }
15
16llvm::hash_code ModuleFileExtension::hashExtension(llvm::hash_code Code) const {
17 return Code;
18}
19
20ModuleFileExtensionWriter::~ModuleFileExtensionWriter() { }
21
22ModuleFileExtensionReader::~ModuleFileExtensionReader() { }