Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 101 #define WTF_ALLOW_MOVE_AND_INIT_WITH_MEM_FUNCTIONS(ClassName) \ | 101 #define WTF_ALLOW_MOVE_AND_INIT_WITH_MEM_FUNCTIONS(ClassName) \ |
| 102 namespace WTF { \ | 102 namespace WTF { \ |
| 103 template<> \ | 103 template<> \ |
| 104 struct VectorTraits<ClassName> : VectorTraitsBase<ClassName> \ | 104 struct VectorTraits<ClassName> : VectorTraitsBase<ClassName> \ |
| 105 { \ | 105 { \ |
| 106 static const bool canInitializeWithMemset = true; \ | 106 static const bool canInitializeWithMemset = true; \ |
| 107 static const bool canMoveWithMemcpy = true; \ | 107 static const bool canMoveWithMemcpy = true; \ |
| 108 }; \ | 108 }; \ |
| 109 } | 109 } |
| 110 | 110 |
| 111 #define WTF_ALLOW_INIT_WITH_MEM_FUNCTIONS(ClassName) \ | |
| 112 namespace WTF { \ | |
| 113 template<> \ | |
|
tkent
2014/05/29 01:19:23
nit: We don't need to indent the content of namesp
sof
2014/05/29 10:03:53
yes, indentation is used for this entire file, so
| |
| 114 struct VectorTraits<ClassName> : VectorTraitsBase<ClassName> \ | |
| 115 { \ | |
| 116 static const bool canInitializeWithMemset = true; \ | |
| 117 }; \ | |
| 118 } | |
| 119 | |
| 111 using WTF::VectorTraits; | 120 using WTF::VectorTraits; |
| 112 using WTF::SimpleClassVectorTraits; | 121 using WTF::SimpleClassVectorTraits; |
| 113 | 122 |
| 114 #endif // WTF_VectorTraits_h | 123 #endif // WTF_VectorTraits_h |
| OLD | NEW |