| OLD | NEW |
| 1 {% from "macros.tmpl" import license -%} | 1 {% from "macros.tmpl" import license -%} |
| 2 {{ license() }} | 2 {{ license() }} |
| 3 | 3 |
| 4 #include "config.h" | 4 #include "config.h" |
| 5 | 5 |
| 6 #ifdef SKIP_STATIC_CONSTRUCTORS_ON_GCC | 6 #ifdef SKIP_STATIC_CONSTRUCTORS_ON_GCC |
| 7 #define {{namespace}}_HIDE_GLOBALS 1 | 7 #define {{namespace}}_HIDE_GLOBALS 1 |
| 8 #endif | 8 #endif |
| 9 | 9 |
| 10 #include "{{namespace}}.h" | 10 #include "{{namespace}}.h" |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 {%- endfor %} | 27 {%- endfor %} |
| 28 | 28 |
| 29 | 29 |
| 30 {%- for name in names %} | 30 {%- for name in names %} |
| 31 new ((void*)&{{name}}) AtomicString({{name}}Impl); | 31 new ((void*)&{{name}}) AtomicString({{name}}Impl); |
| 32 {%- endfor %} | 32 {%- endfor %} |
| 33 } | 33 } |
| 34 | 34 |
| 35 } // {{namespace}} | 35 } // {{namespace}} |
| 36 } // WebCore | 36 } // WebCore |
| OLD | NEW |