1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

[llvm-objcopy] [COFF] Fix the Object forward declaration

This fixes build warnings with clang, and linker errors with MSVC.

llvm-svn: 349606
This commit is contained in:
Martin Storsjo 2018-12-19 07:45:06 +00:00
parent 81d51cccb4
commit 588b61e8c7
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ namespace llvm {
namespace objcopy {
namespace coff {
class Object;
struct Object;
using object::COFFObjectFile;

View File

@ -19,7 +19,7 @@ namespace llvm {
namespace objcopy {
namespace coff {
class Object;
struct Object;
class Writer {
protected: