Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(493)

Unified Diff: Source/wtf/BitVector.h

Issue 338463002: Add WTF_EXPORT to BitVector::OutOfLineBits (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/BitVector.h
diff --git a/Source/wtf/BitVector.h b/Source/wtf/BitVector.h
index 412bf50c0d8300b3ce8ec3c2a467791ff9f4c46a..e540725cd8b06d01583a10ca27d41116bc5450f0 100644
--- a/Source/wtf/BitVector.h
+++ b/Source/wtf/BitVector.h
@@ -194,7 +194,7 @@ private:
return bits | (static_cast<uintptr_t>(1) << maxInlineBits());
}
- class OutOfLineBits {
+ class WTF_EXPORT OutOfLineBits {
public:
size_t numBits() const { return m_numBits; }
size_t numWords() const { return (m_numBits + bitsInPointer() - 1) / bitsInPointer(); }
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698