| Index: Source/wtf/BitVector.h
|
| diff --git a/Source/wtf/BitVector.h b/Source/wtf/BitVector.h
|
| index 29620764d01f4654fcc3f0af489393f483ab0172..6d386b0de096821e98ba43c4d9883c6407863853 100644
|
| --- a/Source/wtf/BitVector.h
|
| +++ b/Source/wtf/BitVector.h
|
| @@ -27,9 +27,10 @@
|
| #define BitVector_h
|
|
|
| #include <stdio.h>
|
| -#include <wtf/Assertions.h>
|
| -#include <wtf/PrintStream.h>
|
| -#include <wtf/StdLibExtras.h>
|
| +#include "wtf/Assertions.h"
|
| +#include "wtf/PrintStream.h"
|
| +#include "wtf/StdLibExtras.h"
|
| +#include "wtf/WTFExport.h"
|
|
|
| namespace WTF {
|
|
|
| @@ -54,7 +55,7 @@ namespace WTF {
|
| // juggle a lot of variable-length BitVectors and you're worried about wasting
|
| // space.
|
|
|
| -class BitVector {
|
| +class WTF_EXPORT BitVector {
|
| public:
|
| BitVector()
|
| : m_bitsOrPointer(makeInlineBits(0))
|
|
|