Chromium Code Reviews| Index: lib/Object/Archive.cpp |
| =================================================================== |
| --- lib/Object/Archive.cpp (revision 152141) |
| +++ lib/Object/Archive.cpp (working copy) |
| @@ -174,7 +174,7 @@ |
| } |
| Archive::Archive(MemoryBuffer *source, error_code &ec) |
| - : Binary(Binary::isArchive, source) { |
| + : Binary(Binary::ID_Archive, source) { |
| // Check for sufficient magic. |
| if (!source || source->getBufferSize() |
| < (8 + sizeof(ArchiveMemberHeader) + 2) // Smallest archive. |