| Index: third_party/WebKit/Source/wtf/GetPtr.h
|
| diff --git a/third_party/WebKit/Source/wtf/GetPtr.h b/third_party/WebKit/Source/wtf/GetPtr.h
|
| index f88fb8029c0c0cc51f67061edb71a8c6fb1fd486..f211f201d9e07c327c53d69dc98a21e5cd189c91 100644
|
| --- a/third_party/WebKit/Source/wtf/GetPtr.h
|
| +++ b/third_party/WebKit/Source/wtf/GetPtr.h
|
| @@ -23,16 +23,16 @@
|
|
|
| namespace WTF {
|
|
|
| -template <typename T> inline T* getPtr(T* p)
|
| -{
|
| - return p;
|
| +template <typename T>
|
| +inline T* getPtr(T* p) {
|
| + return p;
|
| }
|
|
|
| -template <typename T> inline T* getPtr(T& p)
|
| -{
|
| - return &p;
|
| +template <typename T>
|
| +inline T* getPtr(T& p) {
|
| + return &p;
|
| }
|
|
|
| -} // namespace WTF
|
| +} // namespace WTF
|
|
|
| -#endif // WTF_GetPtr_h
|
| +#endif // WTF_GetPtr_h
|
|
|