[lld] r197754 - Fix the build by adding back a comma...
Joey Gouly
joey.gouly at gmail.com
Thu Dec 19 16:01:00 PST 2013
Author: joey
Date: Thu Dec 19 18:01:00 2013
New Revision: 197754
URL: http://llvm.org/viewvc/llvm-project?rev=197754&view=rev
Log:
Fix the build by adding back a comma...
Modified:
lld/trunk/include/lld/ReaderWriter/Reader.h
Modified: lld/trunk/include/lld/ReaderWriter/Reader.h
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/include/lld/ReaderWriter/Reader.h?rev=197754&r1=197753&r2=197754&view=diff
==============================================================================
--- lld/trunk/include/lld/ReaderWriter/Reader.h (original)
+++ lld/trunk/include/lld/ReaderWriter/Reader.h Thu Dec 19 18:01:00 2013
@@ -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
More information about the llvm-commits
mailing list