Index: include/core/SkTLazy.h |
diff --git a/include/core/SkTLazy.h b/include/core/SkTLazy.h |
index 60d816147f7572840060eb16a02ecd5631e6c44a..c8ae3178f7205ae846db681bdd5167b6f507e492 100644 |
--- a/include/core/SkTLazy.h |
+++ b/include/core/SkTLazy.h |
@@ -11,6 +11,7 @@ |
#include "../private/SkTemplates.h" |
#include "SkTypes.h" |
#include <new> |
+#include <utility> |
/** |
* Efficient way to defer allocating/initializing a class until it is needed |
@@ -50,7 +51,7 @@ public: |
if (this->isValid()) { |
fPtr->~T(); |
} |
- fPtr = new (SkTCast<T*>(fStorage.get())) T(skstd::forward<Args>(args)...); |
+ fPtr = new (SkTCast<T*>(fStorage.get())) T(std::forward<Args>(args)...); |
return fPtr; |
} |