Fix up style of StaticString declarations.

At the top level of a file, "const" is the same as "static const",
and reduce the stuttering.
Esse commit está contido em:
Edwin Smith
2013-06-19 17:48:07 -07:00
commit de Sara Golemon
commit 5ec269bf85
54 arquivos alterados com 467 adições e 415 exclusões
+3 -2
Ver Arquivo
@@ -371,8 +371,9 @@ Variant ArrayData::current() const {
return false;
}
static const StaticString s_value("value");
static const StaticString s_key("key");
const StaticString
s_value("value"),
s_key("key");
Variant ArrayData::each() {
if (size_t(m_pos) < size_t(size())) {