diff options
author | Joey Gouly <joey.gouly@gmail.com> | 2013-12-20 00:01:00 +0000 |
---|---|---|
committer | Joey Gouly <joey.gouly@gmail.com> | 2013-12-20 00:01:00 +0000 |
commit | 86409e1cde6a329427d146a21e93104b7c278986 (patch) | |
tree | 79cea26b4505d54a035083b5da96669b5d72fe8a | |
parent | f39ec17371bccb4ceb2b1243fddc672a43bb5f74 (diff) | |
download | bcm5719-llvm-86409e1cde6a329427d146a21e93104b7c278986.tar.gz bcm5719-llvm-86409e1cde6a329427d146a21e93104b7c278986.zip |
Fix the build by adding back a comma...
llvm-svn: 197754
-rw-r--r-- | lld/include/lld/ReaderWriter/Reader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/include/lld/ReaderWriter/Reader.h b/lld/include/lld/ReaderWriter/Reader.h index ede85e5ed9b..841715848b0 100644 --- a/lld/include/lld/ReaderWriter/Reader.h +++ b/lld/include/lld/ReaderWriter/Reader.h @@ -43,7 +43,7 @@ public: /// 1) the file_magic enumeration returned by identify_magic() /// 2) the file extension (e.g. ".obj") /// 3) the whole file content buffer if the above is not enough. - virtual bool canParse(file_magic magic, StringRef fileExtension + virtual bool canParse(file_magic magic, StringRef fileExtension, const MemoryBuffer &mb) const = 0; /// \brief Parse a supplied buffer (already filled with the contents of a |