| Index: Source/wtf/GregorianDateTime.h | 
| diff --git a/Source/wtf/GregorianDateTime.h b/Source/wtf/GregorianDateTime.h | 
| index 95d3d51cd73270ed4b1efe825dfe31b59729449a..75cb5771b5a01b19d15482cb8121a78c8a34b056 100644 | 
| --- a/Source/wtf/GregorianDateTime.h | 
| +++ b/Source/wtf/GregorianDateTime.h | 
| @@ -27,7 +27,8 @@ | 
|  | 
| #include <string.h> | 
| #include <time.h> | 
| -#include <wtf/Noncopyable.h> | 
| +#include "wtf/Noncopyable.h" | 
| +#include "wtf/WTFExport.h" | 
|  | 
| namespace WTF { | 
|  | 
| @@ -70,7 +71,7 @@ public: | 
| inline void setUtcOffset(int utcOffset) { m_utcOffset = utcOffset; } | 
| inline void setIsDST(int isDST) { m_isDST = isDST; } | 
|  | 
| -    void setToCurrentLocalTime(); | 
| +    WTF_EXPORT void setToCurrentLocalTime(); | 
|  | 
| operator tm() const | 
| { | 
|  |