mirror of
https://github.com/RPCS3/llvm.git
synced 2025-05-14 17:36:29 +00:00

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@340645 91177308-0d34-0410-b5e6-96231b3b80d8
21 lines
602 B
C++
21 lines
602 B
C++
//===----------------------- View.cpp ---------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
/// \file
|
|
///
|
|
/// This file defines the virtual anchor method in View.h to pin the vtable.
|
|
///
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "Views/View.h"
|
|
|
|
namespace mca {
|
|
|
|
void View::anchor() {}
|
|
} // namespace mca
|