mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
2b25cb95ef
This also addresses Simon's review comment in D44839. llvm-svn: 328428
21 lines
596 B
C++
21 lines
596 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 "View.h"
|
|
|
|
namespace mca {
|
|
|
|
void View::anchor() {}
|
|
} // namespace mca
|