diff options
| author | Douglas Gregor <dgregor@apple.com> | 2009-04-20 07:36:26 +0000 |
|---|---|---|
| committer | Douglas Gregor <dgregor@apple.com> | 2009-04-20 07:36:26 +0000 |
| commit | 13ad62ced71a2c4e3bf0267ca72e88180cce9a60 (patch) | |
| tree | 5ea46ccc43e84022da3d8f0045d6a5a2b58e71b2 /clang/tools/clang-cc/CacheTokens.cpp | |
| parent | b231e5791e07d90a22e1c7388e11ad51de14482e (diff) | |
| download | bcm5719-llvm-13ad62ced71a2c4e3bf0267ca72e88180cce9a60.tar.gz bcm5719-llvm-13ad62ced71a2c4e3bf0267ca72e88180cce9a60.zip | |
Make the on-disk hash table usable with non-file
raw_ostreams. Requires LLVM r69583.
llvm-svn: 69584
Diffstat (limited to 'clang/tools/clang-cc/CacheTokens.cpp')
| -rw-r--r-- | clang/tools/clang-cc/CacheTokens.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/tools/clang-cc/CacheTokens.cpp b/clang/tools/clang-cc/CacheTokens.cpp index a886ba135a1..d9827dfaa38 100644 --- a/clang/tools/clang-cc/CacheTokens.cpp +++ b/clang/tools/clang-cc/CacheTokens.cpp @@ -604,7 +604,7 @@ public: return std::make_pair(n, sizeof(uint32_t)); } - static void EmitKey(llvm::raw_fd_ostream& Out, PTHIdKey* key, unsigned n) { + static void EmitKey(llvm::raw_ostream& Out, PTHIdKey* key, unsigned n) { // Record the location of the key data. This is used when generating // the mapping from persistent IDs to strings. key->FileOffset = Out.tell(); |

