aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Serialization
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2011-08-04 18:09:14 +0000
committerDouglas Gregor <dgregor@apple.com>2011-08-04 18:09:14 +0000
commit3b2257ca054aa0b7d0150a294f184e9349cda433 (patch)
treedad66b93de486fd445962c5bbf9b44369980f711 /include/clang/Serialization
parent6e43f3f0e2fa7a4b50d2497de94a40437cd26003 (diff)
Remove the unset, unused return value of
ASTReader::ReadMacroRecord(). No functionality change. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@136893 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Serialization')
-rw-r--r--include/clang/Serialization/ASTReader.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Serialization/ASTReader.h b/include/clang/Serialization/ASTReader.h
index 24d87f0680..d862501c4f 100644
--- a/include/clang/Serialization/ASTReader.h
+++ b/include/clang/Serialization/ASTReader.h
@@ -1589,7 +1589,7 @@ public:
Expr *ReadSubExpr();
/// \brief Reads the macro record located at the given offset.
- PreprocessedEntity *ReadMacroRecord(Module &F, uint64_t Offset);
+ void ReadMacroRecord(Module &F, uint64_t Offset);
/// \brief Reads the preprocessed entity located at the current stream
/// position.