diff options
author | JustOff <Off.Just.Off@gmail.com> | 2019-03-13 20:04:13 +0200 |
---|---|---|
committer | JustOff <Off.Just.Off@gmail.com> | 2019-03-13 20:04:13 +0200 |
commit | b586a191ec085d2c6c5c4fdfb1b12102fb5de4c4 (patch) | |
tree | 8271d2b8f78dd3518f23fb93fc971489fe14e67b /dom/fetch/Headers.h | |
parent | 5890367d30702ff8f2fbb6fc28e6ecdd6d5b2b84 (diff) | |
download | uxp-b586a191ec085d2c6c5c4fdfb1b12102fb5de4c4.tar.gz |
Rename the MozMap C++ type to "record" and give it a template parameter for the key type
Diffstat (limited to 'dom/fetch/Headers.h')
-rw-r--r-- | dom/fetch/Headers.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dom/fetch/Headers.h b/dom/fetch/Headers.h index 38b0fc68f1..1dd92f779f 100644 --- a/dom/fetch/Headers.h +++ b/dom/fetch/Headers.h @@ -20,7 +20,7 @@ class ErrorResult; namespace dom { -template<typename T> class MozMap; +template<typename K, typename V> class Record; class HeadersOrByteStringSequenceSequenceOrByteStringByteStringRecord; class OwningHeadersOrByteStringSequenceSequenceOrByteStringByteStringRecord; |