2015-11-03 18:33:07 +00:00
|
|
|
//===-- ModuleFileExtension.cpp - Module File Extensions ------------------===//
|
|
|
|
|
//
|
2019-01-19 08:50:56 +00:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2015-11-03 18:33:07 +00:00
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
#include "clang/Serialization/ModuleFileExtension.h"
|
|
|
|
|
#include "llvm/ADT/Hashing.h"
|
|
|
|
|
using namespace clang;
|
|
|
|
|
|
2021-03-01 18:52:15 +01:00
|
|
|
char ModuleFileExtension::ID = 0;
|
|
|
|
|
|
2021-09-03 11:12:27 -07:00
|
|
|
ModuleFileExtension::~ModuleFileExtension() {}
|
2015-11-03 18:33:07 +00:00
|
|
|
|
2021-09-03 11:12:27 -07:00
|
|
|
void ModuleFileExtension::hashExtension(ExtensionHashBuilder &HBuilder) const {}
|
2015-11-03 18:33:07 +00:00
|
|
|
|
2021-09-03 11:12:27 -07:00
|
|
|
ModuleFileExtensionWriter::~ModuleFileExtensionWriter() {}
|
2015-11-03 18:33:07 +00:00
|
|
|
|
2021-09-03 11:12:27 -07:00
|
|
|
ModuleFileExtensionReader::~ModuleFileExtensionReader() {}
|